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)
| 1832 | raise NotImplementedError() |
| 1833 | |
| 1834 | def denormalize_name(self, name: str) -> str: |
| 1835 | """convert the given name to a case insensitive identifier |
| 1836 | for the backend if it is an all-lowercase name. |
| 1837 | |
| 1838 | This method is only used if the dialect defines |
| 1839 | requires_name_normalize=True. |
| 1840 | |
| 1841 | """ |
| 1842 | raise NotImplementedError() |
| 1843 | |
| 1844 | def has_table( |
| 1845 | self, |
no outgoing calls