Skip to content
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 type added in MySQL 9.0 #1375

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ext/mysql2/result.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ static rb_encoding *binaryEncoding;
*/
#define MYSQL2_BINARY_CHARSET 63

#ifndef MYSQL_TYPE_VECTOR
#define MYSQL_TYPE_VECTOR 242
#endif

#ifndef MYSQL_TYPE_JSON
#define MYSQL_TYPE_JSON 245
#endif
Expand Down Expand Up @@ -382,6 +386,9 @@ static VALUE rb_mysql_result_fetch_field_type(VALUE self, unsigned int idx) {
case MYSQL_TYPE_JSON: // json
rb_field_type = rb_str_new_cstr("json");
break;
case MYSQL_TYPE_VECTOR: // vector
rb_field_type = rb_str_new_cstr("vector");
break;
default:
rb_field_type = rb_str_new_cstr("unknown");
break;
Expand Down
Loading