This commit is contained in:
Lukas Eder 2023-09-19 13:28:05 +02:00
parent 477aeba7eb
commit 68dc0f4ce5

View File

@ -829,7 +829,7 @@ final class MetaImpl extends AbstractMeta {
if (tableType == MATERIALIZED_VIEW)
return TableOptions.materializedView(schema.source(tableType, tableName));
else if (tableType == VIEW);
else if (tableType == VIEW)
return TableOptions.view(schema.source(tableType, tableName));
}