This is an automated email from the ASF dual-hosted git repository. jiafengzheng pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push: new e947eebb9f8 Removed documentation for version 1.1 numbers function (#109) e947eebb9f8 is described below commit e947eebb9f830f542234a59bf9d542495c603bac Author: caoliang-web <71004656+caoliang-...@users.noreply.github.com> AuthorDate: Thu Sep 22 12:44:54 2022 +0800 Removed documentation for version 1.1 numbers function (#109) --- .../sql-functions/table-functions/numbers.md | 65 --------------------- .../sql-functions/table-functions/numbers.md | 68 ---------------------- sidebars.json | 3 +- 3 files changed, 1 insertion(+), 135 deletions(-) diff --git a/docs/sql-manual/sql-functions/table-functions/numbers.md b/docs/sql-manual/sql-functions/table-functions/numbers.md deleted file mode 100644 index ca0f5de9153..00000000000 --- a/docs/sql-manual/sql-functions/table-functions/numbers.md +++ /dev/null @@ -1,65 +0,0 @@ ---- -{ - "title": "numbers", - "language": "en" -} ---- - -<!-- -Licensed to the Apache Software Foundation (ASF) under one -or more contributor license agreements. See the NOTICE file -distributed with this work for additional information -regarding copyright ownership. The ASF licenses this file -to you under the Apache License, Version 2.0 (the -"License"); you may not use this file except in compliance -with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, -software distributed under the License is distributed on an -"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, either express or implied. See the License for the -specific language governing permissions and limitations -under the License. ---> - -## `numbers` - -### description - -Table-Value-Function, generate a temporary table with only one column named 'number', row values are [0,n). - -This function is used in FROM clauses. - -grammar: -``` -FROM numbers(n[,m]); -``` - -parameter: -- `n`: It means to generate rows [0, n). -- `m`: Optional parameters. It means this function is executed simultaneously on `m` be nodes (multiple BEs need to be deployed). - -### example -``` -mysql> select * from numbers("5"); -+--------+ -| number | -+--------+ -| 0 | -| 1 | -| 2 | -| 3 | -| 4 | -| 5 | -| 6 | -| 7 | -| 8 | -| 9 | -+--------+ -``` - -### keywords - - numbers \ No newline at end of file diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/table-functions/numbers.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/table-functions/numbers.md deleted file mode 100644 index 60605f72825..00000000000 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/table-functions/numbers.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -{ - "title": "numbers", - "language": "zh-CN" -} ---- - -<!-- -Licensed to the Apache Software Foundation (ASF) under one -or more contributor license agreements. See the NOTICE file -distributed with this work for additional information -regarding copyright ownership. The ASF licenses this file -to you under the Apache License, Version 2.0 (the -"License"); you may not use this file except in compliance -with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, -software distributed under the License is distributed on an -"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, either express or implied. See the License for the -specific language governing permissions and limitations -under the License. ---> - -## `numbers` - -### description - -表函数,生成一张只含有一列的临时表,列名为`number`,行的值为[0,n)。 - -该函数用于from子句中。 - -语法: - -``` -FROM numbers(n[,m]); -``` - -参数: -- `n`: 代表生成[0,n)的行。 -- `m`: 可选参数,代表`m`个be节点同时执行该函数(需要部署多个be)。 - -### example -``` -mysql> select * from numbers("10"); -+--------+ -| number | -+--------+ -| 0 | -| 1 | -| 2 | -| 3 | -| 4 | -| 5 | -| 6 | -| 7 | -| 8 | -| 9 | -+--------+ -``` - -### keywords - - numbers - - diff --git a/sidebars.json b/sidebars.json index bac22435ae4..feae10df74f 100644 --- a/sidebars.json +++ b/sidebars.json @@ -489,8 +489,7 @@ "sql-manual/sql-functions/table-functions/explode-bitmap", "sql-manual/sql-functions/table-functions/explode-split", "sql-manual/sql-functions/table-functions/explode-json-array", - "sql-manual/sql-functions/table-functions/outer-combinator", - "sql-manual/sql-functions/table-functions/numbers" + "sql-manual/sql-functions/table-functions/outer-combinator" ] }, { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org