[
https://issues.apache.org/jira/browse/HIVE-5355?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13806774#comment-13806774
]
Brock Noland commented on HIVE-5355:
------------------------------------
FWIW, the patch does this:
{noformat}
try {
stmt.executeQuery("select from " + dataTypeTableName);
} catch (SQLException e) {
assertEquals("42000", e.getSQLState());
}
fail("SQLException is expected");
{noformat}
and it should do:
{noformat}
try {
stmt.executeQuery("select from " + dataTypeTableName);
fail("SQLException is expected");
} catch (SQLException e) {
assertEquals("42000", e.getSQLState());
}
{noformat}
> JDBC support for decimal precision/scale
> ----------------------------------------
>
> Key: HIVE-5355
> URL: https://issues.apache.org/jira/browse/HIVE-5355
> Project: Hive
> Issue Type: Task
> Components: Serializers/Deserializers
> Affects Versions: 0.10.0
> Reporter: Xuefu Zhang
> Assignee: Xuefu Zhang
> Fix For: 0.13.0
>
> Attachments: HIVE-5355.1.patch, HIVE-5355.patch
>
>
> A subtask of HIVE-3976.
--
This message was sent by Atlassian JIRA
(v6.1#6144)