[
https://issues.apache.org/jira/browse/HIVE-20945?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Stamatis Zampetakis updated HIVE-20945:
---------------------------------------
Fix Version/s: (was: 2.3.2)
I cleared the fixVersion field since this ticket is still open. Please review
this ticket and if the fix is already committed to a specific version please
set the version accordingly and mark the ticket as RESOLVED.
According to the [JIRA
guidelines|https://cwiki.apache.org/confluence/display/Hive/HowToContribute]
the fixVersion should be set only when the issue is resolved/closed.
> set conf more than 2 is not work although whitelist set in hiveserver2 in Hue
> or Zeppelin, ...
> ----------------------------------------------------------------------------------------------
>
> Key: HIVE-20945
> URL: https://issues.apache.org/jira/browse/HIVE-20945
> Project: Hive
> Issue Type: Bug
> Reporter: maekchi
> Priority: Minor
>
> I use hive 2.3.2 with Hue and Zeppellin.
> and I try below statement.
> {quote}set something1=1;
> set something2=3;
> set something3=4;
> {quote}
> It works well in beeline, but not in Hue and Zeppelin.
> The error message : Cannot modify set something2 at runtime. It is not in
> list of params that are allowed to be modified at runtime
> however I already add it in whitelist.
> After I debugging hive code, I guess this code is something strange in
> org/apache/hive/service/cli/operation/HiveCommandOperation.java
> {quote}Line 111
> String command = getStatement().trim();
> String[] tokens = {color:#ff0000}statement.split("\\s");{color}
> String commandArgs = command.substring(tokens[0].length()).trim();
> {quote}
>
> I think it should be like this
> {quote}String[] tokens = {color:#ff0000}command.split("\\s");{color}
> {quote}
> I test it, and it works very well.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)