Jacob Tolar created HIVE-22531: ---------------------------------- Summary: 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
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)