diff --git a/docs/sql-manual/sql-functions/scalar-functions/string-functions/ends-with.md b/docs/sql-manual/sql-functions/scalar-functions/string-functions/ends-with.md index e0e9d028957f6..75b450ba851f8 100644 --- a/docs/sql-manual/sql-functions/scalar-functions/string-functions/ends-with.md +++ b/docs/sql-manual/sql-functions/scalar-functions/string-functions/ends-with.md @@ -97,7 +97,7 @@ SELECT ENDS_WITH('test', 'test'), ENDS_WITH('testing', 'test'); +---------------------------+------------------------------+ | ENDS_WITH('test', 'test') | ENDS_WITH('testing', 'test') | +---------------------------+------------------------------+ -| 1 | 1 | +| 1 | 0 | +---------------------------+------------------------------+ ``` diff --git a/docs/sql-manual/sql-functions/scalar-functions/string-functions/mask-last-n.md b/docs/sql-manual/sql-functions/scalar-functions/string-functions/mask-last-n.md index 905d9d811d53f..75f0b5b95d3ba 100644 --- a/docs/sql-manual/sql-functions/scalar-functions/string-functions/mask-last-n.md +++ b/docs/sql-manual/sql-functions/scalar-functions/string-functions/mask-last-n.md @@ -147,11 +147,11 @@ SELECT mask_last_n('ABC-123-xyz', 7); SELECT mask_last_n('Helloṭṛ123', 9); ``` ```text -+--------------------------------+ -| mask_last_n('Hello你好123', 9) | -+--------------------------------+ -| Hello你好nnn | -+--------------------------------+ ++----------------------------------+ +| mask_last_n('Helloṭṛ123', 9) | ++----------------------------------+ +| Helloṭṛnnn | ++----------------------------------+ ``` ```sql diff --git a/docs/sql-manual/sql-functions/scalar-functions/string-functions/mask.md b/docs/sql-manual/sql-functions/scalar-functions/string-functions/mask.md index c922360b272e1..80df0ef19836b 100644 --- a/docs/sql-manual/sql-functions/scalar-functions/string-functions/mask.md +++ b/docs/sql-manual/sql-functions/scalar-functions/string-functions/mask.md @@ -128,7 +128,7 @@ SELECT mask('Test123', 'ABC', 'xyz', '999'); +--------------------------------------+ | mask('Test123', 'ABC', 'xyz', '999') | +--------------------------------------+ -| Xxxx999 | +| Axxx999 | +--------------------------------------+ ``` diff --git a/docs/sql-manual/sql-functions/scalar-functions/string-functions/position.md b/docs/sql-manual/sql-functions/scalar-functions/string-functions/position.md index 7c7ff828613c4..a62206403d22d 100644 --- a/docs/sql-manual/sql-functions/scalar-functions/string-functions/position.md +++ b/docs/sql-manual/sql-functions/scalar-functions/string-functions/position.md @@ -124,7 +124,7 @@ SELECT POSITION('ḍḍumai' IN 'ṭṛì ḍḍumai hello'), POSITION('hello', +--------------------------------------+-------------------------------------------+ | POSITION('ḍḍumai' IN 'ṭṛì ḍḍumai hello') | POSITION('hello', 'ṭṛì ḍḍumai hello', 8) | +--------------------------------------+-------------------------------------------+ -| 5 | 13 | +| 5 | 12 | +--------------------------------------+-------------------------------------------+ ``` diff --git a/docs/sql-manual/sql-functions/scalar-functions/string-functions/reverse.md b/docs/sql-manual/sql-functions/scalar-functions/string-functions/reverse.md index e1892f149b836..ac993b46e1060 100644 --- a/docs/sql-manual/sql-functions/scalar-functions/string-functions/reverse.md +++ b/docs/sql-manual/sql-functions/scalar-functions/string-functions/reverse.md @@ -116,7 +116,7 @@ SELECT REVERSE('ṭṛì ḍḍumai'), REVERSE('ḍḍumannàri'); +-----------------------+------------------------+ | REVERSE('ṭṛì ḍḍumai') | REVERSE('ḍḍumannàri') | +-----------------------+------------------------+ -| iamuḍḍ ìṛṭ | irànnaumuḍḍ | +| iamuḍḍ ìṛṭ | irànnamuḍḍ | +-----------------------+------------------------+ ``` diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/ends-with.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/ends-with.md index 02bd80125ab30..6b844f05ff7f4 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/ends-with.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/ends-with.md @@ -97,7 +97,7 @@ SELECT ENDS_WITH('test', 'test'), ENDS_WITH('testing', 'test'); +---------------------------+------------------------------+ | ENDS_WITH('test', 'test') | ENDS_WITH('testing', 'test') | +---------------------------+------------------------------+ -| 1 | 1 | +| 1 | 0 | +---------------------------+------------------------------+ ``` diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/mask-last-n.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/mask-last-n.md index e632f602aa19a..25532ac0f6821 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/mask-last-n.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/mask-last-n.md @@ -161,11 +161,11 @@ SELECT mask_last_n('Helloṭṛ123', 9); ``` ```text -+--------------------------------+ -| mask_last_n('Hello你好123', 9) | -+--------------------------------+ -| Hello你好nnn | -+--------------------------------+ ++----------------------------------+ +| mask_last_n('Helloṭṛ123', 9) | ++----------------------------------+ +| Helloṭṛnnn | ++----------------------------------+ ``` ```sql diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/mask.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/mask.md index 676124aaba467..186012302eddf 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/mask.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/mask.md @@ -138,7 +138,7 @@ SELECT mask('Test123', 'ABC', 'xyz', '999'); +--------------------------------------+ | mask('Test123', 'ABC', 'xyz', '999') | +--------------------------------------+ -| Xxxx999 | +| Axxx999 | +--------------------------------------+ ``` diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/position.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/position.md index e54059eb9bc97..25c088ba12b54 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/position.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/position.md @@ -124,7 +124,7 @@ SELECT POSITION('ḍḍumai' IN 'ṭṛì ḍḍumai hello'), POSITION('hello', +--------------------------------------+-------------------------------------------+ | POSITION('ḍḍumai' IN 'ṭṛì ḍḍumai hello') | POSITION('hello', 'ṭṛì ḍḍumai hello', 8) | +--------------------------------------+-------------------------------------------+ -| 5 | 13 | +| 5 | 12 | +--------------------------------------+-------------------------------------------+ ``` diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/reverse.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/reverse.md index a89a5289cdd9d..6f9bb508a0682 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/reverse.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/string-functions/reverse.md @@ -116,7 +116,7 @@ SELECT REVERSE('ṭṛì ḍḍumai'), REVERSE('ḍḍumannàri'); +-----------------------+------------------------+ | REVERSE('ṭṛì ḍḍumai') | REVERSE('ḍḍumannàri') | +-----------------------+------------------------+ -| iamuḍḍ ìṛṭ | irànnaumuḍḍ | +| iamuḍḍ ìṛṭ | irànnamuḍḍ | +-----------------------+------------------------+ ```