Add simple test

This commit is contained in:
potya 2020-05-25 14:11:51 +03:00
parent bee14177cd
commit fb08a96582
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1 @@
Nullable(Int32) Int32 Nullable(Int32)

View File

@ -0,0 +1,11 @@
DROP TABLE IF EXISTS data_null;
CREATE TABLE data_null (
a INT NULL,
b INT NOT NULL,
C Nullable(INT)
);
INSERT INTO data_null VALUES (1, 2, 3);
SELECT toTypeName(*) FROM data_null;