Skip to content

Commit d81fc44

Browse files
committed
Add hive sql library operators for array_slice function, which is used in mvindex's implementation (1580/2015)
Signed-off-by: Yuanchun Shen <yuanchu@amazon.com>
1 parent 7134760 commit d81fc44

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

opensearch/src/main/java/org/opensearch/sql/opensearch/executor/OpenSearchExecutionEngine.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,11 @@ public static SqlOperatorTable getChainedOperatorTable() {
345345
OperatorTable.instance(),
346346
// Add a list of necessary SqlLibrary if needed
347347
SqlLibraryOperatorTableFactory.INSTANCE.getOperatorTable(
348-
SqlLibrary.MYSQL, SqlLibrary.BIG_QUERY, SqlLibrary.SPARK, SqlLibrary.POSTGRESQL));
348+
SqlLibrary.MYSQL,
349+
SqlLibrary.BIG_QUERY,
350+
SqlLibrary.SPARK,
351+
SqlLibrary.POSTGRESQL,
352+
SqlLibrary.HIVE));
349353
}
350354
}
351355
}

0 commit comments

Comments
 (0)