Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish #1843

Merged
merged 3 commits into from
Nov 6, 2023
Merged

Publish #1843

Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion content/reference/sql/sql-support/data-description.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions content/reference/sql/sql-support/supported-statements.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand All @@ -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` | ✅ | |
Expand All @@ -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. |
Expand All @@ -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` | ❌ | |
Expand Down