GitHub user undeadwing opened a pull request:
https://github.com/apache/hive/pull/326
execute error with this class
when i use hive-jdbc to get data from hive, i got this exception
org.apache.commons.beanutils.ConversionException: Cannot assign value of
type 'java.math.BigDecimal' to property 'valuess' of type 'java.math.BigInteger'
because the data type is decimal
so i change the type to solve it
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/undeadwing/hive master
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/hive/pull/326.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #326
----
commit 1d74b3177892c984393844cf2fce924c44b92d07
Author: undeadwing <gomancrazy@...>
Date: 2018-03-23T05:08:04Z
execute error with this class
when i use hive-jdbc to get data from hive, i got this exception
org.apache.commons.beanutils.ConversionException: Cannot assign value of
type 'java.math.BigDecimal' to property 'valuess' of type 'java.math.BigInteger'
because the data type is decimal
so i change the type to solve it
----
---