Skip to content

Commit 3c6c1ea

Browse files
fix double read as float issue 18 (#19)
Signed-off-by: Steve Sloan <[email protected]>
1 parent dd7b152 commit 3c6c1ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/databricks/sqlalchemy/_parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def get_comment_from_dte_output(dte_output: List[Dict[str, str]]) -> Optional[st
309309
"int": sqlalchemy.types.Integer,
310310
"bigint": sqlalchemy.types.BigInteger,
311311
"float": sqlalchemy.types.Float,
312-
"double": sqlalchemy.types.Float,
312+
"double": sqlalchemy.types.Double,
313313
"string": sqlalchemy.types.String,
314314
"varchar": sqlalchemy.types.String,
315315
"char": sqlalchemy.types.String,

0 commit comments

Comments
 (0)