Replies: 1 comment
-
Ah it seems like you have to specify the index on the client side declaration, when running in the Server -> Webworker -> UI Mode |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
Say I had a table named Table X, with the Index specified as "ID"
ID Value
A 100
B 200
I get a row
ID:B, Value: 300
Then I convert this row into byte format using the code below
Then I call TableX.update(byteFormattedRow)
What I expect is the
ID Value
A 100
B 300
What I ended up getting
ID Value
A 100
B 200
B 300
Can I get a confirmation that partial updates are supported in Arrow Update? Or is there a limitation on the index?
Beta Was this translation helpful? Give feedback.
All reactions