Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BREAKING] Implicit cast rules for integer literals, and parameterized ANY for binding #10194

Merged
merged 14 commits into from
Jan 10, 2024
Prev Previous commit
Next Next commit
Add test for types of combining integer literals
  • Loading branch information
Mytherin committed Jan 10, 2024
commit b4f67483bccb35ea6c774abe77bd2f13049319e6
5 changes: 5 additions & 0 deletions test/sql/binder/integer_literal_binding.test
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,8 @@ query I
SELECT typeof(1.05 + 1)
----
DECIMAL(13,2)

query I
SELECT typeof(1 + 1);
----
INTEGER