From 54be3912a9cc0046ad8bd375b6f54023e85a7038 Mon Sep 17 00:00:00 2001 From: Nickolay Ponomarev Date: Mon, 5 Oct 2020 04:30:49 +0300 Subject: [PATCH] Update CHANGELOG --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3e39aab..05dbfdfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,12 +18,14 @@ Check https://github.com/ballista-compute/sqlparser-rs/commits/main for undocume - Support `TABLE()` functions in `FROM` (#253) - thanks @eyalleshem! - Support Snowflake's single-line comments starting with '#' or '//' (#264) - thanks @eyalleshem! - Support PostgreSQL `PREPARE`, `EXECUTE`, and `DEALLOCATE` (#243) - thanks @silathdiir! +- Support PostgreSQL math operators (#267) - thanks @alex-dukhno! - Add SQLite dialect (#248) - thanks @mashuai! - Add Snowflake dialect (#259) - thanks @eyalleshem! - DDL: - Support `OR REPLACE` in `CREATE VIEW`/`TABLE` (#239) - thanks @Dandandan! - Support specifying `ASC`/`DESC` in index columns (#249) - thanks @mashuai! - Support SQLite `AUTOINCREMENT` and MySQL `AUTO_INCREMENT` column option in `CREATE TABLE` (#234) - thanks @mashuai! + - Support PostgreSQL `IF NOT EXISTS` for `CREATE SCHEMA` (#276) - thanks @alex-dukhno! ### Fixed - Fix a typo in `JSONFILE` serialization, introduced in 0.3.1 (#237)