We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d99bb37 commit ea036f5Copy full SHA for ea036f5
pkg/parser/external/parser.go
@@ -38,13 +38,11 @@ func NewParser(dialect string) (Parser, error) {
38
return newJavaParser("hive"), nil
39
case "calcite":
40
return newJavaParser("calcite"), nil
41
- case "maxcompute":
+ case "maxcompute", "alisa":
42
// maxcompute is PHONY parser, java will
43
// chose odps or calcite according to which
44
// exists in classpath
45
return newJavaParser("maxcompute"), nil
46
- case "alisa":
47
- return newJavaParser("odps"), nil
48
default:
49
return nil, fmt.Errorf("unrecognized dialect %s", dialect)
50
}
0 commit comments