From da33105519b7fb1f8a8e298533e45938aab39655 Mon Sep 17 00:00:00 2001 From: spaceoddity91719 Date: Mon, 6 Feb 2023 09:28:32 +0800 Subject: [PATCH] fix(mogdb):fix issues #I6CYCL #I6CYCR #I6CYTN --- .../MogDB-Oracle-compatibility.md | 4 ++-- .../sql-reference/data-types/enumeration-types.md | 2 +- product/en/docs-mogdb/v3.1/toc.md | 1 - product/en/docs-mogdb/v3.1/toc_dev.md | 1 - .../Kafka-supported-for-importing-data-to-table.md | 2 +- .../MogDB-Oracle-compatibility.md | 4 ++-- .../sql-reference/data-types/enumeration-types.md | 2 +- product/zh/docs-mogdb/v3.1/toc.md | 1 - product/zh/docs-mogdb/v3.1/toc_dev.md | 1 - .../Kafka-supported-for-importing-data-to-table.md | 2 +- 10 files changed, 8 insertions(+), 12 deletions(-) diff --git a/product/en/docs-mogdb/v3.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md b/product/en/docs-mogdb/v3.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md index 82fd61e1..61831db0 100644 --- a/product/en/docs-mogdb/v3.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md +++ b/product/en/docs-mogdb/v3.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md @@ -19,7 +19,7 @@ In the function part, it mainly adds instrb, nls_charset_id, nls_charset_name, n packages are generally only used in stored procedures, and according to ORACLE data package rules, new packages are placed under the corresponding schema. The supported Oracle management packages are dbms_random, dbms_output, dbms_lock, dbms_application_info, dbms_metadata, dbms_job, dbms_utility. -For more information about the functions and the packages, please see the [whale](. /... /reference-guide/oracle-plugins/whale.md). +For more information about the functions and the packages, please see the [whale](../../developer-guide/extension/whale.md). ## Benefits @@ -27,4 +27,4 @@ MogDB's compatibility with Oracle is enhanced by using the whale extension to en ## Related Pages -[whale](../../reference-guide/oracle-plugins/whale.md), [Character Processing Functions and Operators](../../reference-guide/functions-and-operators/3-character-processing-functions-and-operators.md), [Mathematical Functions and Operators](../../reference-guide/functions-and-operators/7-mathematical-functions-and-operators.md), [Date and Time Processing Functions and Operators](../../reference-guide/functions-and-operators/8-date-and-time-processing-functions-and-operators.md), [HLL Functions and Operators](../../reference-guide/functions-and-operators/13.1-hll-functions-and-operators.md), [Window Functions](../../reference-guide/functions-and-operators/18-window-functions.md), [System Information Functions](../../reference-guide/functions-and-operators/23-system-information-functions.md) \ No newline at end of file +[whale](../../developer-guide/extension/whale.md), [Character Processing Functions and Operators](../../reference-guide/functions-and-operators/3-character-processing-functions-and-operators.md), [Mathematical Functions and Operators](../../reference-guide/functions-and-operators/7-mathematical-functions-and-operators.md), [Date and Time Processing Functions and Operators](../../reference-guide/functions-and-operators/8-date-and-time-processing-functions-and-operators.md), [HLL Functions and Operators](../../reference-guide/functions-and-operators/13.1-hll-functions-and-operators.md), [Window Functions](../../reference-guide/functions-and-operators/18-window-functions.md), [System Information Functions](../../reference-guide/functions-and-operators/23-system-information-functions.md) \ No newline at end of file diff --git a/product/en/docs-mogdb/v3.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/enumeration-types.md b/product/en/docs-mogdb/v3.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/enumeration-types.md index 934640ae..5bc00381 100644 --- a/product/en/docs-mogdb/v3.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/enumeration-types.md +++ b/product/en/docs-mogdb/v3.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/enumeration-types.md @@ -18,7 +18,7 @@ The ENUM type is a string object whose value is selected from a list of values s name VARCHAR(40), size ENUM('small', 'medium', 'large') ); - INSERT INO shirts (name, size) VALUES ('dress shirt','large'), ('t-shirt','medium'), + INSERT INTO shirts (name, size) VALUES ('dress shirt','large'), ('t-shirt','medium'), ('polo shirt','small'); SELECT name, size FROM shirts WHERE size = 'medium'; name | size diff --git a/product/en/docs-mogdb/v3.1/toc.md b/product/en/docs-mogdb/v3.1/toc.md index 2ac1413d..15974c10 100644 --- a/product/en/docs-mogdb/v3.1/toc.md +++ b/product/en/docs-mogdb/v3.1/toc.md @@ -560,7 +560,6 @@ + [JSON-JSONB Functions and Operators](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md) + Expressions + [Conditional Expressions](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md) - + [Type Conversion](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-type-conversion.md) + [DDL Syntax](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md) + [DML Syntax](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md) + [DCL Syntax](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md) diff --git a/product/en/docs-mogdb/v3.1/toc_dev.md b/product/en/docs-mogdb/v3.1/toc_dev.md index 0afa3d1a..d1b0b658 100644 --- a/product/en/docs-mogdb/v3.1/toc_dev.md +++ b/product/en/docs-mogdb/v3.1/toc_dev.md @@ -208,7 +208,6 @@ + [JSON-JSONB Functions and Operators](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md) + Expressions + [Conditional Expressions](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md) - + [Type Conversion](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-type-conversion.md) + [DDL Syntax](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md) + [DML Syntax](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md) + [DCL Syntax](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md) diff --git a/product/en/docs-uqbar/v1.1/data-write/data-writing-method/Kafka-supported-for-importing-data-to-table.md b/product/en/docs-uqbar/v1.1/data-write/data-writing-method/Kafka-supported-for-importing-data-to-table.md index d962fbe1..dc192f99 100644 --- a/product/en/docs-uqbar/v1.1/data-write/data-writing-method/Kafka-supported-for-importing-data-to-table.md +++ b/product/en/docs-uqbar/v1.1/data-write/data-writing-method/Kafka-supported-for-importing-data-to-table.md @@ -21,7 +21,7 @@ Access [Kafka official website](https://kafka.apache.org/downloads) to download ### Download a Database Connector -Download a JDBC driver corresponding to the target database, such as openGauss. Access [openGauss official website](https://www.opengauss.org/zh/download.html) to download a JDBC driver corresponding to the target operating system. +Download a JDBC driver corresponding to the target database, such as openGauss. Access [openGauss official website](https://www.opengauss.org/en/download/) to download a JDBC driver corresponding to the target operating system. ![jwbsehxhqw](https://cdn-mogdb.enmotech.com/docs-media/uqbar/opengauss-jdbc-connector.png) diff --git a/product/zh/docs-mogdb/v3.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md b/product/zh/docs-mogdb/v3.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md index 07a526ec..c6df4a6e 100644 --- a/product/zh/docs-mogdb/v3.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md +++ b/product/zh/docs-mogdb/v3.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md @@ -19,7 +19,7 @@ MogDB使用whale插件兼容Oracle的相关函数以及package功能。 package一般只用于存储过程中,根据ORACLE数据的package规则,新package放到对应的schema下。支持的Oracle管理包有dbms_random,dbms_output,dbms_lock,dbms_application_info,dbms_metadata,dbms_job,dbms_utility。 -有关函数以及package详情,请参见[whale插件](../../reference-guide/oracle-plugins/whale.md)。 +有关函数以及package详情,请参见[whale插件](../../developer-guide/extension/whale.md)。 ## 客户价值 @@ -27,4 +27,4 @@ package一般只用于存储过程中,根据ORACLE数据的package规则,新 ## 相关页面 -[whale插件](../../reference-guide/oracle-plugins/whale.md),[字符处理函数和操作符](../../reference-guide/functions-and-operators/3-character-processing-functions-and-operators.md),[数字操作函数和操作符](../../reference-guide/functions-and-operators/7-mathematical-functions-and-operators.md),[时间和日期处理函数和操作符](../../reference-guide/functions-and-operators/8-date-and-time-processing-functions-and-operators.md),[HLL函数和操作符](../../reference-guide/functions-and-operators/13.1-hll-functions-and-operators.md),[窗口函数](../../reference-guide/functions-and-operators/18-window-functions.md),[系统信息函数](../../reference-guide/functions-and-operators/23-system-information-functions.md) \ No newline at end of file +[whale插件](../../developer-guide/extension/whale.md),[字符处理函数和操作符](../../reference-guide/functions-and-operators/3-character-processing-functions-and-operators.md),[数字操作函数和操作符](../../reference-guide/functions-and-operators/7-mathematical-functions-and-operators.md),[时间和日期处理函数和操作符](../../reference-guide/functions-and-operators/8-date-and-time-processing-functions-and-operators.md),[HLL函数和操作符](../../reference-guide/functions-and-operators/13.1-hll-functions-and-operators.md),[窗口函数](../../reference-guide/functions-and-operators/18-window-functions.md),[系统信息函数](../../reference-guide/functions-and-operators/23-system-information-functions.md) \ No newline at end of file diff --git a/product/zh/docs-mogdb/v3.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/enumeration-types.md b/product/zh/docs-mogdb/v3.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/enumeration-types.md index 6a34f276..393fcb24 100644 --- a/product/zh/docs-mogdb/v3.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/enumeration-types.md +++ b/product/zh/docs-mogdb/v3.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/enumeration-types.md @@ -18,7 +18,7 @@ ENUM是一个字符串对象,其值是从创建表时在列定义中显式枚 name VARCHAR(40), size ENUM('small', 'medium', 'large') ); - INSERT INO shirts (name, size) VALUES ('dress shirt','large'), ('t-shirt','medium'), + INSERT INTO shirts (name, size) VALUES ('dress shirt','large'), ('t-shirt','medium'), ('polo shirt','small'); SELECT name, size FROM shirts WHERE size = 'medium'; name | size diff --git a/product/zh/docs-mogdb/v3.1/toc.md b/product/zh/docs-mogdb/v3.1/toc.md index 403c7a5e..0271a84f 100644 --- a/product/zh/docs-mogdb/v3.1/toc.md +++ b/product/zh/docs-mogdb/v3.1/toc.md @@ -560,7 +560,6 @@ + [JSON-JSONB函数和操作符](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md) + 表达式 + [条件表达式](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md) - + [类型转换](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-type-conversion.md) + [DDL语法一览表](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md) + [DML语法一览表](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md) + [DCL语法一览表](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md) diff --git a/product/zh/docs-mogdb/v3.1/toc_dev.md b/product/zh/docs-mogdb/v3.1/toc_dev.md index 43812d5f..c40be3a5 100644 --- a/product/zh/docs-mogdb/v3.1/toc_dev.md +++ b/product/zh/docs-mogdb/v3.1/toc_dev.md @@ -208,7 +208,6 @@ + [JSON-JSONB函数和操作符](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md) + 表达式 + [条件表达式](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md) - + [类型转换](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-type-conversion.md) + [DDL语法一览表](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md) + [DML语法一览表](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md) + [DCL语法一览表](/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md) diff --git a/product/zh/docs-uqbar/v1.1/data-write/data-writing-method/Kafka-supported-for-importing-data-to-table.md b/product/zh/docs-uqbar/v1.1/data-write/data-writing-method/Kafka-supported-for-importing-data-to-table.md index 29777cf5..a4807685 100644 --- a/product/zh/docs-uqbar/v1.1/data-write/data-writing-method/Kafka-supported-for-importing-data-to-table.md +++ b/product/zh/docs-uqbar/v1.1/data-write/data-writing-method/Kafka-supported-for-importing-data-to-table.md @@ -21,7 +21,7 @@ date: 2022-11-12 ### 下载数据库驱动 -下载对应数据库的JDBC驱动,以openGauss为例。访问[openGauss官网](https://www.opengauss.org/zh/download.html)下载对应操作系统的JDBC驱动。 +下载对应数据库的JDBC驱动,以openGauss为例。访问[openGauss官网](https://www.opengauss.org/zh/download/)下载对应操作系统的JDBC驱动。 ![jwbsehxhqw](https://cdn-mogdb.enmotech.com/docs-media/uqbar/opengauss-jdbc-connector.png) -- Gitee