Skip to content
Prev Previous commit
test: add test cases for real number columns
  • Loading branch information
yoRyuuuuu committed Mar 14, 2025
commit e9562586486f49b7b707f38b5a6b5646f9c48278

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,19 @@
CREATE TABLE dt_real_number (
a double,
b double precision,
c real,
d float,
e decimal,
f dec,
g fixed
);

CREATE TABLE dt_real_number_not_null (
a double not null,
b double precision not null,
c real not null,
d float not null,
e decimal not null,
f dec not null,
g fixed not null
);
Loading