Skip to content

Commit

Permalink
Support ASCII and VARCHAR
Browse files Browse the repository at this point in the history
  • Loading branch information
abicky authored and okkez committed Feb 6, 2024
1 parent 2f007db commit 5ab2b49
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,9 @@ private List<CassandraPartition> buildPartitionsFromFilterPrefixes(CassandraTabl
CassandraType cassandraType = columnHandle.getCassandraType();

switch (cassandraType.getKind()) {
case ASCII:
case TEXT:
case VARCHAR:
Slice slice = (Slice) value;
if (isComposite) {
buffer.putShort((short) slice.length());
Expand Down

0 comments on commit 5ab2b49

Please sign in to comment.