You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test [4] > create table test2 (id int32, value string, primary key (id))
table test2 defined
test [5] >insert into test2 values (1, 'foo')
inserted 1 row
test [6] >select*from test2 where value ="f"
inserted 1 foo
test [7] >select*from test2 where value ='f'
test [8] >
Similar results happen if the field is an int32.
On an integer primary key:
test [4] > create table test (id int32, val int32, primary key (id))
table test defined
test [5] >insert into test values (1, 1)
inserted 1 row
test [6] >select*from test where id >""java.lang.UnsupportedOperationException
Similar results happen if the field is an
int32
.On an integer primary key:
With the following on the server:
The text was updated successfully, but these errors were encountered: