Skip to content

Commit 85f45e1

Browse files
author
chengyitian
committed
AJ-812: remove rows check for BasicAnyVector deserialize;
1 parent 023421d commit 85f45e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/xxdb/data/BasicAnyVector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected BasicAnyVector(ExtendedDataInput in) throws IOException{
3535
int cols = in.readInt();
3636
int size = rows * cols;
3737
values = new Entity[size];
38-
assert(rows <= 1024);
38+
// assert(rows <= 1024);
3939
for(int i=0; i<size; ++i){
4040
short flag = in.readShort();
4141
int form = flag>>8;

0 commit comments

Comments
 (0)