Return the `enable_ident_normalization` of this Session
(&self)
| 563 | |
| 564 | /// Return the `enable_ident_normalization` of this Session |
| 565 | pub fn enable_ident_normalization(&self) -> bool { |
| 566 | self.state |
| 567 | .read() |
| 568 | .config() |
| 569 | .options() |
| 570 | .sql_parser |
| 571 | .enable_ident_normalization |
| 572 | } |
| 573 | |
| 574 | /// Return a copied version of config for this Session |
| 575 | pub fn copied_config(&self) -> SessionConfig { |