Add support for the SQL OVERLAPS predicate (#1638)

This commit is contained in:
Yoav Cohen 2025-01-06 16:35:24 +01:00 committed by GitHub
parent e23877cb2d
commit 17e22f0a60
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 13 additions and 0 deletions

View file

@ -12805,3 +12805,8 @@ fn parse_update_from_before_select() {
parse_sql_statements(query).unwrap_err()
);
}
#[test]
fn parse_overlaps() {
verified_stmt("SELECT (DATE '2016-01-10', DATE '2016-02-01') OVERLAPS (DATE '2016-01-20', DATE '2016-02-10')");
}