Replies: 1 comment 3 replies
-
So the issue is that Spark's |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Tinyint's are a bit annoying. In spark there is
tinyint
, and so is in MS SQL Server. But spark's Data Type is signed, while t-sql's is not. DuckDB hasUTinyInt
andTINYINT
which is great.Spark turn's SQL Server's into SMALLINT, since it's own data type does not cover values > 127. So should sqlglot do this as well?
Beta Was this translation helpful? Give feedback.
All reactions