From 3fd02dc030b5a382f26685f95e5001cdf759c1ec Mon Sep 17 00:00:00 2001 From: Tim Sehn Date: Mon, 6 Nov 2023 10:53:18 -0800 Subject: [PATCH 1/2] Added orange circle for fulltext --- content/reference/sql/sql-support/data-description.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/reference/sql/sql-support/data-description.md b/content/reference/sql/sql-support/data-description.md index a93fdc65d..e6f6b6238 100644 --- a/content/reference/sql/sql-support/data-description.md +++ b/content/reference/sql/sql-support/data-description.md @@ -65,7 +65,7 @@ title: Data Description | :------------------- | :-------- | :------------------------------------------------------------------------------------------------------ | | Indexes | 🟠 | Unsupported on TINYTEXT, TEXT, MEDIUMTEXT, LONGTEXT, TINYBLOB, BLOB, MEDIUMBLOB and LONGBLOB data types | | Multi-column indexes | ✅ | | -| Full-text indexes | ❌ | | +| Full-text indexes | 🟠 | Only basic functionality supported. Missing other search modifiers, different text parsers, stopword support, minimum word length adjustments, phrase matching | | Spatial indexes | ✅ | | ## Schema From 76021bca76a88bd1b25e47b3073c40d39efdeb58 Mon Sep 17 00:00:00 2001 From: Tim Sehn Date: Mon, 6 Nov 2023 11:00:23 -0800 Subject: [PATCH 2/2] Update supported-statements.md --- .../sql/sql-support/supported-statements.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/content/reference/sql/sql-support/supported-statements.md b/content/reference/sql/sql-support/supported-statements.md index 631766591..412ea5e2c 100644 --- a/content/reference/sql/sql-support/supported-statements.md +++ b/content/reference/sql/sql-support/supported-statements.md @@ -9,7 +9,7 @@ title: Supported Statements | Statement | Supported | Notes and limitations | |:--------------------|:----------|:----------------------------------------------------------------------------------| | `CALL` | ✅ | | -| `CREATE TABLE AS` | ❌ | `INSERT INTO SELECT *` is supported. | +| `CREATE TABLE AS` | ✅ | | | `CREATE TABLE LIKE` | ✅ | | | `DO` | ❌ | | | `DELETE` | ✅ | No support for referring to more than one table in a single `DELETE` statement. | @@ -23,7 +23,7 @@ title: Supported Statements | `SELECT FROM AS OF` | ✅ | Selecting from a table as of any known revision or commit timestamp is supported. | | `SELECT FOR UPDATE` | ❌ | Row-level locks are not supported. | | `SUBQUERIES` | ✅ | Subqueries work, but must be given aliases. Some limitations apply. | -| `TABLE` | ❌ | Equivalent to `SELECT * FROM TABLE` without a `WHERE` clause. | +| `TABLE` | ✅ | | | `TRUNCATE` | ✅ | | | `UPDATE` | ✅ | No support for referring to more than one table in a single `UPDATE` statement. | | `VALUES` | ✅ | | @@ -49,19 +49,19 @@ title: Supported Statements | `ALTER VIEW` | ❌ | Views can be created and dropped, but not altered. | | `CHANGE COLUMN` | ✅ | | | `CREATE DATABASE` | ✅ | Creates a new dolt database rooted relative to the server directory | -| `CREATE EVENT` | 🟠 | Dolt stores event definitions but event execution is not supported yet. | +| `CREATE EVENT` | ✅ | | | `CREATE FUNCTION` | ❌ | | -| `CREATE INDEX` | 🟠 | Fulltext indexes are not supported. | +| `CREATE INDEX` | ✅ | | | `CREATE SCHEMA` | ✅ | Creates a new dolt database rooted relative to the server directory | | `CREATE TABLE` | ✅ | | -| `CREATE TABLE AS` | ❌ | | +| `CREATE TABLE AS` | ✅ | | | `CREATE TRIGGER` | ✅ | | | `CREATE VIEW` | ✅ | | | `DESCRIBE TABLE` | ✅ | | | `DROP COLUMN` | ✅ | | | `DROP CONSTRAINT` | ✅ | | | `DROP DATABASE` | ✅ | Deletes the dolt data directory. This is unrecoverable. | -| `DROP EVENT` | ❌ | | +| `DROP EVENT` | ✅ | | | `DROP FUNCTION` | ❌ | | | `DROP INDEX` | ✅ | | | `DROP SCHEMA` | ✅ | Deletes the dolt data directory. This is unrecoverable. | @@ -85,7 +85,7 @@ title: Supported Statements | `SHOW DATABASES` | ✅ | | | `SHOW FUNCTION CODE` | ❌ | | | `SHOW FUNCTION STATUS` | ❌ | | -| `SHOW GRANTS` | 🟠 | Database privileges, table privileges, and role assumption are not yet implemented. | +| `SHOW GRANTS` | 🟠 | Database privileges, table privileges, and role assumption are not yet implemented. | | `SHOW INDEX` | ❌ | | | `SHOW PRIVILEGES` | ✅ | | | `SHOW PROCEDURE CODE` | ❌ | |