Skip to content
Prev Previous commit
Next Next commit
test: add test cases for boolean columns
  • Loading branch information
yoRyuuuuu committed Mar 14, 2025
commit 29183a23e7fbc926a64c920ea7d8c1252f6ac285

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CREATE table dt_boolean (
a boolean,
b bool,
c tinyint(1)
);

CREATE table dt_boolean_not_null (
a boolean not null,
b bool not null,
c tinyint(1) not null
);