-
Notifications
You must be signed in to change notification settings - Fork 9
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
feat: Support for varbinary
data type
#33
Comments
This is the test table I came up with. I used a Meltano logo image from their website as the binary file I loaded into
|
I need a way to test how the picture looks in the table after it is loaded and then view the picture again after the EL is over. Here is the simple program I used to test with.
|
After looking at the JSON Schema documentation I thought I would use the keywords https://json-schema.org/understanding-json-schema/reference/non_json_data.html#contentencoding
|
While trying to add support for First in
Second, we need add the encoding code to
|
Binary data types of variable length.
https://learn.microsoft.com/en-us/sql/t-sql/data-types/binary-and-varbinary-transact-sql?view=sql-server-ver16
https://docs.sqlalchemy.org/en/14/core/type_basics.html#sqlalchemy.types.VARBINARY
Construct a VARBINARY type.
Parameters:
length – optional, a length for the column for use in DDL statements, for those binary types that accept a length, such as the MySQL BLOB type.
filestream=False –
if True, renders the FILESTREAM keyword in the table definition. In this case length must be None or 'max'.
New in version 1.4.31.
The text was updated successfully, but these errors were encountered: