Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ else if (precision < 10)
return INT32;
else if (precision < 19)
return INT64;
else if (precision < 38)
else if (precision <= 38)
return INT128;
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public void qaTests() throws IOException, SQLException, InterruptedException {
for (File c : BaseSQLTests.getQATests()) {
// This program cannot be compiled because it contains a udf
if (c.toString().matches(".*swiss.*-q1.*")) continue;
// if (!c.toString().contains("x.sql")) continue;
System.out.println("Compiling " + c);
try {
compileAndCheck(c);
Expand Down
Loading