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 ed1b468 commit 9273946Copy full SHA for 9273946
core/trino-spi/src/main/java/io/trino/spi/connector/ColumnMetadata.java
@@ -190,6 +190,7 @@ private Builder(ColumnMetadata columnMetadata)
190
{
191
this.name = columnMetadata.getName();
192
this.type = columnMetadata.getType();
193
+ this.defaultValue = Optional.ofNullable(columnMetadata.getDefaultValue().orElse(null));
194
this.nullable = columnMetadata.isNullable();
195
this.comment = Optional.ofNullable(columnMetadata.getComment());
196
this.extraInfo = Optional.ofNullable(columnMetadata.getExtraInfo());
0 commit comments