[
https://issues.apache.org/jira/browse/HIVE-22531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ashutosh Chauhan updated HIVE-22531:
------------------------------------
Fix Version/s: 4.0.0
Assignee: Jacob Tolar
Resolution: Fixed
Status: Resolved (was: Patch Available)
Pushed to master. Thanks, Jacob!
> Fix a couple whitespace errors in error messages
> ------------------------------------------------
>
> Key: HIVE-22531
> URL: https://issues.apache.org/jira/browse/HIVE-22531
> Project: Hive
> Issue Type: Improvement
> Reporter: Jacob Tolar
> Assignee: Jacob Tolar
> Priority: Trivial
> Fix For: 4.0.0
>
> Attachments: HIVE-22531.1.patch
>
>
> I got an error in {{show table}} due to a configuration issue locally. The
> error message is missing a space:
> {code:java}
> --
> ql/src/java/org/apache/hadoop/hive/ql/ddl/table/info/ShowTablesOperation.java
> - throw new HiveException(e, ErrorMsg.GENERIC_ERROR, "in database" + dbName);
> + throw new HiveException(e, ErrorMsg.GENERIC_ERROR, "in database " +
> dbName); {code}
>
> One other similar place:
> {code:java}
> --
> ql/src/java/org/apache/hadoop/hive/ql/metadata/SessionHiveMetaStoreClient.java
> - " for table " + tableName + " in database " + dbName + "and
> for user " +
> + " for table " + tableName + " in database " + dbName + " and
> for user " + {code}
>
> Will attach a patch with these two changes.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)