mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
ZEPPELIN-440 HiveInterpreter with multiple configuration
- Fixed getScriptBody return after trimming
This commit is contained in:
parent
8aa7601b90
commit
5fa4fd7182
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ public class Paragraph extends Job implements Serializable, Cloneable {
|
|||
if (magic.length() + 1 >= text.length()) {
|
||||
return "";
|
||||
}
|
||||
return text.substring(magic.length() + 1);
|
||||
return text.substring(magic.length() + 1).trim();
|
||||
}
|
||||
|
||||
public NoteInterpreterLoader getNoteReplLoader() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue