Created 12-07-2016 09:48 PM
Per documentation, the type of each Parameter is to expected to an integer value that represents the JDBC Type.
hiveql.args.N.type
What are the JDBC numeral type value for the following data types and can you please advise where the corresponding documentation can be found?
INTEGER
TIMESTAMP
DOUBLE
LONGVARCHAR
Created 12-07-2016 09:56 PM
There is a table for JDBC type values here, for your data types they are as follows:
Type | Value |
INTEGER | 4 |
TIMESTAMP | 93 |
DOUBLE | 8 |
LONGVARCHAR | -1 |
Created 12-07-2016 09:56 PM
There is a table for JDBC type values here, for your data types they are as follows:
Type | Value |
INTEGER | 4 |
TIMESTAMP | 93 |
DOUBLE | 8 |
LONGVARCHAR | -1 |
Created 12-07-2016 10:04 PM
Awesome support, thanks!