We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f9036e commit d9ba7a2Copy full SHA for d9ba7a2
plugin/trino-memory/src/test/java/io/trino/plugin/memory/TestMemoryConnectorTest.java
@@ -112,12 +112,12 @@ protected TestTable createTableWithDefaultColumns()
112
return newTrinoTable(
113
"test_default_columns",
114
"""
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
- """);
+ (col_required BIGINT NOT NULL,
+ col_nullable BIGINT,
+ col_default BIGINT DEFAULT 43,
+ col_nonnull_default BIGINT DEFAULT 42 NOT NULL,
+ col_required2 BIGINT NOT NULL)
+ """);
121
}
122
123
@Test
0 commit comments