mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
bug fixed auto completion for postgresql interpreter
This commit is contained in:
parent
a7a6539990
commit
bb24bc0d96
1 changed files with 4 additions and 4 deletions
|
|
@ -114,10 +114,10 @@ public class PostgreSqlInterpreter extends Interpreter {
|
|||
|
||||
private SqlCompleter sqlCompleter;
|
||||
|
||||
private static final Function<CharSequence, String> sequenceToStringTransformer =
|
||||
new Function<CharSequence, String>() {
|
||||
public String apply(CharSequence seq) {
|
||||
return seq.toString();
|
||||
private static final Function<CharSequence, InterpreterCompletion> sequenceToStringTransformer =
|
||||
new Function<CharSequence, InterpreterCompletion>() {
|
||||
public InterpreterCompletion apply(CharSequence seq) {
|
||||
return new InterpreterCompletion(seq.toString(), seq.toString());
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue