From 2a746bc9f683d7e97eeaf65544c3d119e15869ac Mon Sep 17 00:00:00 2001 From: joocer Date: Sun, 9 Feb 2025 16:42:58 +0000 Subject: [PATCH] sqlparser --- docs/get-started/release-notes/change-log.md | 3 +++ docs/sql-reference/adv-null-semantics.md | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/get-started/release-notes/change-log.md b/docs/get-started/release-notes/change-log.md index 5f1b5bc7..7e1425cb 100644 --- a/docs/get-started/release-notes/change-log.md +++ b/docs/get-started/release-notes/change-log.md @@ -62,6 +62,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - [[#2312](https://github.com/mabel-dev/opteryx/issues/2312)] `DISTINCT` functions with prehashing don't rehash when adding to HashSet [@joocer](https://github.com/joocer) - [[#2346](https://github.com/mabel-dev/opteryx/issues/2346)] Compiled function for `IN` set containment testing [@joocer](https://github.com/joocer) - [[#2361](https://github.com/mabel-dev/opteryx/issues/2361)] Split `list_ops` to function per file [@joocer](https://github.com/joocer) +- [[#2356](https://github.com/mabel-dev/opteryx/issues/2356)] [Parser] Create an Opteryx dialect for [sqlparser-rs](https://github.com/apache/datafusion-sqlparser-rs) [@joocer](https://github.com/joocer) +- [[#2376](https://github.com/mabel-dev/opteryx/issues/2376)] [Parser] Support hyphens in identifier names [@joocer](https://github.com/joocer) +- [[#2327](https://github.com/mabel-dev/opteryx/pull/2327)] Updated [sqlparser-rs](https://github.com/apache/datafusion-sqlparser-rs) to version 0.54.0 [dependabot](https://github.com/apps/dependabot) ## [0.19.0] - 2025-01-02 diff --git a/docs/sql-reference/adv-null-semantics.md b/docs/sql-reference/adv-null-semantics.md index 97e0dfab..af3e42f3 100644 --- a/docs/sql-reference/adv-null-semantics.md +++ b/docs/sql-reference/adv-null-semantics.md @@ -47,6 +47,3 @@ Also, returns an empty set. !!! note `null` comparison returning `null` holds true even for `null = null`. Do not test for null using an equals condition, use `IS NULL`. - -!!! note - A column which contains `null` values will return these `null`s as matches to a `!=` comparison, e.g. `WHERE name != 'bob'` will include rows with `null` in the name column. \ No newline at end of file