Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[CONJ-717] conversion function support for other data type than defau…
…lt MariaDB conversion type. MariaDB support datatype conversion for : BINARY CHAR DATE DATETIME DECIMAL[(M[,D])] DOUBLE FLOAT — From MariaDB 10.4.5 INTEGER TIME JDBC spec 4.2 support (C.5): CONVERT(value, SQLtype) value converted to SQLtype where SQLtype may be one of the following SQL types: SQL_BIGINT, SQL_BINARY, SQL_BIT, SQL_BLOB, SQL_BOOLEAN, SQL_CHAR, SQL_CLOB, SQL_DATE, SQL_DECIMAL, SQL_DATALINK, SQL_DOUBLE, SQL_FLOAT, SQL_INTEGER, SQL_LONGVARBINARY, SQL_LONGNVARCHAR, SQL_LONGVARCHAR, SQL_NCHAR, SQL_NCLOB, SQL_NUMERIC, SQL_NVARCHAR, SQL_REAL, SQL_ROWID, SQL_SQLXML, SQL_SMALLINT, SQL_TIME, SQL_TIMESTAMP, SQL_TINYINT, SQL_VARBINARY, or SQL_VARCHAR MariaDB server support automatic conversion, but datatype must correspond to expected type (i.e convert(2147483648, INTEGER ) Will result in a BIG_INT datatype).
- Loading branch information
Showing
3 changed files
with
415 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.