Skip to content
Prev Previous commit
Next Next commit
test: add test cases for NOT NULL columns
  • Loading branch information
yoRyuuuuu committed Mar 14, 2025
commit d2a3c13c0417f181217402eedf1135fd013fa700

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
Expand Up @@ -7,6 +7,15 @@ CREATE TABLE dt_integer (
f bigint
);

CREATE TABLE dt_integer_not_null (
a tinyint not null,
b smallint not null,
c int not null,
d integer not null,
e mediumint not null,
f bigint not null
);

CREATE TABLE dt_unsigned_integer (
a tinyint unsigned,
b smallint unsigned,
Expand All @@ -15,3 +24,13 @@ CREATE TABLE dt_unsigned_integer (
e mediumint unsigned,
f bigint unsigned
);


CREATE TABLE dt_unsigned_integer_not_null (
a tinyint unsigned not null,
b smallint unsigned not null,
c int unsigned not null,
d integer unsigned not null,
e mediumint unsigned not null,
f bigint unsigned not null
);