-
Notifications
You must be signed in to change notification settings - Fork 172
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
SNOW-1936378: Add possibility for Loader to support Vector type #2079
Comments
Hello @mhryb , Thanks for raising the issue. `String createTableSQL = "CREATE OR REPLACE TABLE my_vector_table (vector_col VECTOR(FLOAT, 3));";
Output: Regards, |
Hello @sfc-gh-sghosh, thanks for the answer. |
Let me describe with more details what I mean.
So it would be nice to add possibility to cast array to a vector if target column is a vector. |
Hello, is it possible to support Vector type for StreamLoader ?
What is the current behavior?
Currently Loader does not support Vector type, only array.
What is the desired behavior?
It would be good if loader supports Vector type.
How would this improve
snowflake-jdbc
?It gives a possibility to support Vector type for loader. So users can load vector data as other types.
References, Other Background
As I can see for loading operation the driver creates a temp table and then use select/merge operation to move the data. It would be nice if during this operation we could convert an array to Vector if the target column is vector.
The text was updated successfully, but these errors were encountered: