From 13cc3b0ed16cef7f903f815f183a37ab143372a1 Mon Sep 17 00:00:00 2001 From: l30039603 Date: Fri, 13 Oct 2023 18:27:04 +0800 Subject: [PATCH] =?UTF-8?q?fixed=201ad6c08=20from=20https://gitee.com/tong?= =?UTF-8?q?dabao/docs/pulls/5832=20=E4=BF=AE=E6=94=B9substring=5Findex?= =?UTF-8?q?=E3=80=81export=5Fset=E5=87=BD=E6=95=B0=E7=A4=BA=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...60\345\222\214\346\223\215\344\275\234\347\254\246.md" | 8 ++++---- ...60\345\222\214\346\223\215\344\275\234\347\254\246.md" | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git "a/content/docs-lite/zh/docs/ExtensionReference/dolphin-\345\255\227\347\254\246\345\244\204\347\220\206\345\207\275\346\225\260\345\222\214\346\223\215\344\275\234\347\254\246.md" "b/content/docs-lite/zh/docs/ExtensionReference/dolphin-\345\255\227\347\254\246\345\244\204\347\220\206\345\207\275\346\225\260\345\222\214\346\223\215\344\275\234\347\254\246.md" index 5107f7707..471b61289 100644 --- "a/content/docs-lite/zh/docs/ExtensionReference/dolphin-\345\255\227\347\254\246\345\244\204\347\220\206\345\207\275\346\225\260\345\222\214\346\223\215\344\275\234\347\254\246.md" +++ "b/content/docs-lite/zh/docs/ExtensionReference/dolphin-\345\255\227\347\254\246\345\244\204\347\220\206\345\207\275\346\225\260\345\222\214\346\223\215\344\275\234\347\254\246.md" @@ -640,7 +640,7 @@ 示例: ``` - openGauss=# SELECT instr('abcdabcdabcd', 'bcd', 2); + openGauss=# SELECT substring_index('abcdabcdabcd', 'bcd', 2); substring_index ----------------- abcda @@ -660,9 +660,9 @@ 示例: ```sql openGauss=# SELECT EXPORT_SET(5,'Y','N',',',5); - export_set - ------------- - Y,N,Y,N,N + export_set + ------------ + YNYNN (1 row) ``` diff --git "a/content/zh/docs/ExtensionReference/dolphin-\345\255\227\347\254\246\345\244\204\347\220\206\345\207\275\346\225\260\345\222\214\346\223\215\344\275\234\347\254\246.md" "b/content/zh/docs/ExtensionReference/dolphin-\345\255\227\347\254\246\345\244\204\347\220\206\345\207\275\346\225\260\345\222\214\346\223\215\344\275\234\347\254\246.md" index 5107f7707..471b61289 100644 --- "a/content/zh/docs/ExtensionReference/dolphin-\345\255\227\347\254\246\345\244\204\347\220\206\345\207\275\346\225\260\345\222\214\346\223\215\344\275\234\347\254\246.md" +++ "b/content/zh/docs/ExtensionReference/dolphin-\345\255\227\347\254\246\345\244\204\347\220\206\345\207\275\346\225\260\345\222\214\346\223\215\344\275\234\347\254\246.md" @@ -640,7 +640,7 @@ 示例: ``` - openGauss=# SELECT instr('abcdabcdabcd', 'bcd', 2); + openGauss=# SELECT substring_index('abcdabcdabcd', 'bcd', 2); substring_index ----------------- abcda @@ -660,9 +660,9 @@ 示例: ```sql openGauss=# SELECT EXPORT_SET(5,'Y','N',',',5); - export_set - ------------- - Y,N,Y,N,N + export_set + ------------ + YNYNN (1 row) ``` -- Gitee