morrySnow commented on code in PR #1889: URL: https://github.com/apache/doris-website/pull/1889#discussion_r1923766738
########## docs/sql-manual/sql-functions/table-valued-functions/partition-values.md: ########## @@ -23,3 +23,71 @@ KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> + +## Description + +Table function that generates a temporary table of partition values, allowing you to view the list of partition values for a specific TABLE. + +This function is used in the FROM clause and only supports hive tables. + +## Syntax + +```sql +PARTITION_VALUES( + "catalog"="<catalog>", + "database"="<database>", + "table"="<table>" +) +``` + +## Required Parameters +| Field | Description | +|------------------|------------------------------------------| +| **`<catalog>`** | Specifies the catalog name of the cluster to query. | +| **`<database>`** | Specifies the database name of the cluster to query. | +| **`<table>`** | Specifies the table name of the cluster to query. | Review Comment: ```suggestion | `<catalog>` | Specifies the catalog name of the cluster to query. | | `<database>` | Specifies the database name of the cluster to query. | | `<table>` | Specifies the table name of the cluster to query. | ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org