-
Notifications
You must be signed in to change notification settings - Fork 70
Add vector support #592
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add vector support #592
Conversation
|
@dkropachev This is wip, I still need to merge apache#1899 but it is not that obvious due to how different upstream and our fork is regarding marshaling. |
66d53fb to
70d3c23
Compare
70d3c23 to
1a679c4
Compare
|
@dkropachev it is ready for your review |
da52975 to
ff54760
Compare
|
The CI is failing on these tests: not sure why, the errors look like this: |
|
@sylwiaszunejko , could you please rebase and address test and build failures. |
|
CI fails due to scylladb/scylladb#26704 |
ff54760 to
ef211bd
Compare
Can you please mark these tests to have them skipped unit next scylla version, while rest of vector tests to be run on current one |
2710059 to
e1e9381
Compare
Support marshalling and unmarshalling of vector custom type. patched by Lukasz Antoniak; reviewed by João Reis, Stanislav Bychkov, Oleksandr Luzhniy, Mykyta Oleksiienko and Bohdan Siryk for CASSGO-11
e1e9381 to
8947348
Compare
Tinyint unmarshal silently errors and unmarshals tinyint values as 0 in some situations. This patch also removes other cases of silent errors in decode functions. Fix issue where reading vectors with SliceMap is not possible. Patch by João Reis; reviewed by James Hartig for CASSGO-82, CASSGO-83
…in vector_test xd
INSERTing Vector<collection> results in ServerError scylladb/scylladb#26704
8947348 to
3232116
Compare
3232116 to
59575d8
Compare
|
@sylwiaszunejko , on scylla: |
dkropachev
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix the test and it is good to go
|
@dkropachev CI fixed |
This PR is supposed to add vector support to scylladb's fork of gocql by merging upstream commits.
Fixes: #585