You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Jacob Tolar (Jira)" <ji...@apache.org> on 2019/11/22 22:54:00 UTC

[jira] [Updated] (HIVE-22531) Fix a couple whitespace errors in error messages

     [ https://issues.apache.org/jira/browse/HIVE-22531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jacob Tolar updated HIVE-22531:
-------------------------------
    Attachment: HIVE-22531.1.patch
        Status: Patch Available  (was: Open)

> 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
>            Priority: Trivial
>         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)