convert the given name to a case insensitive identifier for the backend if it is an all-lowercase name. This method is only used if the dialect defines requires_name_normalize=True.
(self, name: str)
| 1863 | raise NotImplementedError() |
| 1864 | |
| 1865 | def denormalize_name(self, name: str) -> str: |
| 1866 | """convert the given name to a case insensitive identifier |
| 1867 | for the backend if it is an all-lowercase name. |
| 1868 | |
| 1869 | This method is only used if the dialect defines |
| 1870 | requires_name_normalize=True. |
| 1871 | |
| 1872 | """ |
| 1873 | raise NotImplementedError() |
| 1874 | |
| 1875 | def has_table( |
| 1876 | self, |
no outgoing calls