ZEPPELIN-440 HiveInterpreter with multiple configuration

- Fixed getScriptBody return after trimming
This commit is contained in:
Jongyoul Lee 2015-11-24 14:31:47 +09:00
parent 8aa7601b90
commit 5fa4fd7182

View file

@ -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() {