We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3240f95 + 8c717b6 commit 3659394Copy full SHA for 3659394
ydb/sqlalchemy/__init__.py
@@ -37,8 +37,8 @@ def __init__(self, dialect):
37
)
38
39
def _requires_quotes(self, *args, **kwargs):
40
- # Force all identifiers to get quoted.
41
- return True
+ # Force all identifiers to get quoted unless already quoted.
+ return not (value.startswith(self.initial_quote) and value.endswith(self.final_quote))
42
43
class YqlTypeCompiler(GenericTypeCompiler):
44
def visit_VARCHAR(self, type_, **kw):
0 commit comments