This commit is contained in:
Mark Paluch
2025-04-14 09:20:41 +02:00
parent ac9ba85927
commit 04d8ff5267

View File

@@ -233,7 +233,7 @@ public class ColumnSpecification {
return "vector<%s, %d>".formatted(vt.getElementType().asCql(true, true), vt.getDimensions());
}
return type.asCql(true, true);
return type != null ? type.asCql(true, true) : "";
}
@Override