File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
src/databricks/sqlalchemy Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- from databricks .sqlalchemy .dialect import DatabricksDialect
1+ from databricks .sqlalchemy .dialect import DatabricksDialect
Original file line number Diff line number Diff line change 99
1010from databricks .sqlalchemy .dialect .base import DatabricksIdentifierPreparer
1111
12+
1213class DatabricksDialect (default .DefaultDialect ):
13- """This dialect implements only those methods required to pass our e2e tests
14- """
14+ """This dialect implements only those methods required to pass our e2e tests"""
1515
1616 # Possible attributes are defined here: https://docs.sqlalchemy.org/en/14/core/internals.html#sqlalchemy.engine.Dialect
1717 name : str = "databricks"
@@ -33,7 +33,7 @@ def create_connect_args(self, url):
3333 "access_token" : url .password ,
3434 "http_path" : url .query .get ("http_path" ),
3535 "catalog" : url .query .get ("catalog" ),
36- "schema" : url .query .get ("schema" )
36+ "schema" : url .query .get ("schema" ),
3737 }
3838
3939 return [], kwargs
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ class DatabricksIdentifierPreparer(compiler.IdentifierPreparer):
99 legal_characters = re .compile (r"^[A-Z0-9_]+$" , re .I )
1010
1111 def __init__ (self , dialect ):
12- super ().__init__ (dialect , initial_quote = "`" )
12+ super ().__init__ (dialect , initial_quote = "`" )
You can’t perform that action at this time.
0 commit comments