Dayakar M created HIVE-29495:
--------------------------------
Summary: [HPLSQL]Setting hive configs in hplsql causing console
logs to be lost
Key: HIVE-29495
URL: https://issues.apache.org/jira/browse/HIVE-29495
Project: Hive
Issue Type: Bug
Components: hpl/sql
Reporter: Dayakar M
Assignee: Dayakar M
[HPLSQL]Setting hive configs in hplsql causing console logs to be lost.
Check the below, here first PRINT statement is printing the message properly on
the console but before executing PRINT if SET hive config statement is executed
then PRINT is not printing the message on console.
{code:java}
0: jdbc:hive2://localhost> PRINT 'Should print this message';
. . . . . . . . . . . . . . . . . . . . . . .> /
INFO : Should print this message
No rows affected (0.021 seconds)
0: jdbc:hive2://ccycloud-1.nightly7x-us-lx.ro> EXECUTE 'SET
hive.query.results.cache.enabled=false';
. . . . . . . . . . . . . . . . . . . . . . .> PRINT 'Should print this
message';
. . . . . . . . . . . . . . . . . . . . . . .> /
No rows affected (0.03 seconds)
0: jdbc:hive2://localhost> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)