Skip to content

Commit d9ba7a2

Browse files
committed
fixup! Support default column values in Memory connector
1 parent 6f9036e commit d9ba7a2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

plugin/trino-memory/src/test/java/io/trino/plugin/memory/TestMemoryConnectorTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ protected TestTable createTableWithDefaultColumns()
112112
return newTrinoTable(
113113
"test_default_columns",
114114
"""
115-
(col_required BIGINT NOT NULL,
116-
col_nullable BIGINT,
117-
col_default BIGINT DEFAULT 43,
118-
col_nonnull_default BIGINT DEFAULT 42 NOT NULL,
119-
col_required2 BIGINT NOT NULL)
120-
""");
115+
(col_required BIGINT NOT NULL,
116+
col_nullable BIGINT,
117+
col_default BIGINT DEFAULT 43,
118+
col_nonnull_default BIGINT DEFAULT 42 NOT NULL,
119+
col_required2 BIGINT NOT NULL)
120+
""");
121121
}
122122

123123
@Test

0 commit comments

Comments
 (0)