Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,8 @@ private void checkPredicate(Expression predicate) {
checkIsNull((IsNull) child);
} else if (child instanceof ComparisonPredicate) {
checkComparisonPredicate((ComparisonPredicate) child);
} else if (child instanceof InPredicate) {
checkInPredicate((InPredicate) child);
} else {
throw new AnalysisException("Where clause only supports compound predicate,"
+ " binary predicate, is_null predicate or in predicate. But we meet "
Expand Down