Returns true if the named [`FeatureFlag`] is set to `on`, returns false otherwise.
(&self, flag: &'static FeatureFlag)
| 899 | |
| 900 | /// Returns true if the named [`FeatureFlag`] is set to `on`, returns false otherwise. |
| 901 | pub fn is_feature_flag_enabled(&self, flag: &'static FeatureFlag) -> bool { |
| 902 | self.require_feature_flag(flag).is_ok() |
| 903 | } |
| 904 | |
| 905 | pub fn finalize_param_types(self) -> Result<Vec<SqlScalarType>, PlanError> { |
| 906 | let param_types = self.param_types.into_inner(); |
no test coverage detected