Skip to content

Commit 6f8fce4

Browse files
committed
jsp
1 parent fb3f756 commit 6f8fce4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-data-cassandra/src/main/java/org/springframework/data/cassandra/core/cql/keyspace/ColumnSpecification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ private String renderType() {
233233
return "vector<%s, %d>".formatted(vt.getElementType().asCql(true, true), vt.getDimensions());
234234
}
235235

236-
return type.asCql(true, true);
236+
return type != null ? type.asCql(true, true) : "";
237237
}
238238

239239
@Override

0 commit comments

Comments
 (0)