You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2022/11/12 08:08:49 UTC

[shardingsphere] branch master updated: Update Oracle DML SLELECT ROWID statement parse (#22099)

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

zhangliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new 8bf50f3ea24 Update Oracle DML SLELECT ROWID statement parse (#22099)
8bf50f3ea24 is described below

commit 8bf50f3ea24878574c5dc8bef343e02b26eab7c8
Author: Zichao <57...@users.noreply.github.com>
AuthorDate: Sat Nov 12 21:08:43 2022 +1300

    Update Oracle DML SLELECT ROWID statement parse (#22099)
---
 .../distsql/syntax/ral/import-database-configuration.cn.md        | 8 ++++----
 .../distsql/syntax/ral/import-database-configuration.en.md        | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/docs/document/content/reference/distsql/syntax/ral/import-database-configuration.cn.md b/docs/document/content/reference/distsql/syntax/ral/import-database-configuration.cn.md
index 1c206487e2d..da378e14f8f 100644
--- a/docs/document/content/reference/distsql/syntax/ral/import-database-configuration.cn.md
+++ b/docs/document/content/reference/distsql/syntax/ral/import-database-configuration.cn.md
@@ -11,7 +11,7 @@ weight = 10
 
 ```sql
 ExportDatabaseConfiguration ::=
-  'IMPORT' 'DATABASE' 'CONFIGURATION' 'FROM' filePath ('TO' databaseName)?
+  'IMPORT' 'DATABASE' 'CONFIGURATION' 'FROM' 'FILE' filePath ('TO' databaseName)?
 
 databaseName ::=
   identifier
@@ -31,18 +31,18 @@ filePath ::=
 - 将 `YAML` 中的配置导入到指定逻辑库中
 
 ```sql
-IMPORT DATABASE CONFIGURATION FROM "/xxx/config_test1.yaml" TO test1;
+IMPORT DATABASE CONFIGURATION FROM FILE "/xxx/config_test1.yaml" TO test1;
 ```
 
 - 将 `YAML` 中的配置导入到当前逻辑库中
 
 ```sql
-IMPORT DATABASE CONFIGURATION FROM "/xxx/config_test1.yaml";
+IMPORT DATABASE CONFIGURATION FROM FILE "/xxx/config_test1.yaml";
 ```
 
 ### 保留字
 
-`IMPORT`、`DATABASE`、`CONFIGURATION`、`FROM`、`TO`
+`IMPORT`、`DATABASE`、`CONFIGURATION`、`FROM`、`FILE`、`TO`
 
 ### 相关链接
 
diff --git a/docs/document/content/reference/distsql/syntax/ral/import-database-configuration.en.md b/docs/document/content/reference/distsql/syntax/ral/import-database-configuration.en.md
index 91232fac2bb..fb13d1003dc 100644
--- a/docs/document/content/reference/distsql/syntax/ral/import-database-configuration.en.md
+++ b/docs/document/content/reference/distsql/syntax/ral/import-database-configuration.en.md
@@ -11,7 +11,7 @@ The `IMPORT DATABASE CONFIGURATION` syntax is used to import `YAML` configuratio
 
 ```sql
 ExportDatabaseConfiguration ::=
-  'IMPORT' 'DATABASE' 'CONFIGURATION' 'FROM' filePath ('TO' databaseName)?
+  'IMPORT' 'DATABASE' 'CONFIGURATION' 'FROM' 'FILE' filePath ('TO' databaseName)?
 
 databaseName ::=
   identifier
@@ -31,18 +31,18 @@ filePath ::=
 - Import the configuration in `YAML` into the specified database
 
 ```sql
-IMPORT DATABASE CONFIGURATION FROM "/xxx/config_test1.yaml" TO test1;
+IMPORT DATABASE CONFIGURATION FROM FILE "/xxx/config_test1.yaml" TO test1;
 ```
 
 - Import the configuration in `YAML` into the current database
 
 ```sql
-IMPORT DATABASE CONFIGURATION FROM "/xxx/config_test1.yaml";
+IMPORT DATABASE CONFIGURATION FROM FILE "/xxx/config_test1.yaml";
 ```
 
 ### Reserved word
 
-`IMPORT`, `DATABASE`, `CONFIGURATION`, `FROM`, `TO`
+`IMPORT`, `DATABASE`, `CONFIGURATION`, `FROM`, `FILE`, `TO`
 
 ### Related links