Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Sep 23, 2024
1 parent 96c1120 commit 53961a7
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,10 @@ public List<BucketEntry> bucketEntries() {

@Override
public long rowCount() {
if (!tableSchema.primaryKeys().isEmpty() || deletionVectors) {
throw new UnsupportedOperationException(
"Unsupported short path for primary key table and deletion vectors table");
}
return scan.rowCount();
}

Expand Down

0 comments on commit 53961a7

Please sign in to comment.