Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

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 Dec 11, 2023
1 parent f0997d3 commit 90056ec
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,9 @@ private List<CassandraPartition> buildPartitionsFromFilterPrefixes(CassandraTabl
CassandraType cassandraType = columnHandle.getCassandraType();

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

0 comments on commit 90056ec

Please sign in to comment.