Skip to content

Commit e956258

Browse files
committed
test: add test cases for real number columns
1 parent 29183a2 commit e956258

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

internal/endtoend/testdata/emit_pointers_for_null_types/mysql/go/models.go

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
CREATE TABLE dt_real_number (
2+
a double,
3+
b double precision,
4+
c real,
5+
d float,
6+
e decimal,
7+
f dec,
8+
g fixed
9+
);
10+
11+
CREATE TABLE dt_real_number_not_null (
12+
a double not null,
13+
b double precision not null,
14+
c real not null,
15+
d float not null,
16+
e decimal not null,
17+
f dec not null,
18+
g fixed not null
19+
);

0 commit comments

Comments
 (0)