-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Support MySQL vector type #1004
Conversation
I've verified this works on peerdb, would be good to get tests, but that's blocked on using a more recent version of mysql in unit tests. Would like to look into widening CI separately |
With MySQL 9.1.0: reset binary logs and gtids;
create table t1 (id int primary key auto_increment, v vector);
insert into t1(v) values (STRING_TO_VECTOR("[1.05, -17.8, 32]")); Without this PR:
With this PR:
|
we can create an issue in this repo tp enhance CI coverage on different MySQL distro or versions. I agree that we can fix it later. |
No description provided.