You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ap...@apache.org on 2023/05/04 12:05:54 UTC

[ignite-3] branch main updated: IGNITE-19306 Fixed SQL parameter description (#1984)

This is an automated email from the ASF dual-hosted git repository.

apkhmv pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new bf88018151 IGNITE-19306 Fixed SQL parameter description (#1984)
bf88018151 is described below

commit bf880181518580eb745e9980d2bc0df3f577aec0
Author: IgGusev <ig...@gridgain.com>
AuthorDate: Thu May 4 16:05:48 2023 +0400

    IGNITE-19306 Fixed SQL parameter description (#1984)
---
 docs/_docs/sql-reference/ddl.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/_docs/sql-reference/ddl.adoc b/docs/_docs/sql-reference/ddl.adoc
index d7d5d8eacd..c6bb176bef 100644
--- a/docs/_docs/sql-reference/ddl.adoc
+++ b/docs/_docs/sql-reference/ddl.adoc
@@ -186,7 +186,7 @@ NonTerminal('column_list')
 
 Parameters:
 
-- `IF NOT EXISTS` - if applied to `TABLE`, do not throw an error if a table with the specified table name does not exist. If applied to `COLUMN`, do not throw an error if a column with the specified name does not exist.
+- `IF EXISTS` - if applied to `TABLE`, do not throw an error if a table with the specified table name does not exist. If applied to `COLUMN`, do not throw an error if a column with the specified name does not exist.
 - `qualified_table_name` - the name of the table.
 - `DROP` - removes an existing column or multiple columns from a table. Once a column is removed, it cannot be accessed within queries. Consider the following notes and limitations:
 - `column_list` - the name of the list of columns to be removed.