boluor opened a new pull request, #3862:
URL: https://github.com/apache/doris-website/pull/3862
Backport of #3852 / #3856 to **dev** (`i18n/zh-CN/.../current/`).
## Problem
The ZH `to-quantile-state.md` CREATE TABLE example carries the unsubstituted
doc-template variable `${tableName_21}`, while the INSERT/SELECT that follow
reference the literal `quantile_state_agg_test`. On a real cluster the CREATE
makes a table literally named `${tableName_21}`, so every later statement fails
with table-not-found.
## Fix
Use the literal name `quantile_state_agg_test` in the CREATE TABLE.
## Cluster verification (Doris master build, `doris-0.0.0-trunk`)
```
SELECT dt, id, quantile_percent(quantile_union(price), 0)
FROM quantile_state_agg_test GROUP BY dt, id ORDER BY dt, id;
+----------+------+--------------------------------------------+
| 20220201 | 0 | 1 |
| 20220201 | 1 | -1 |
+----------+------+--------------------------------------------+
```
🤖 Generated with [Claude Code](https://claude.com/claude-code)
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]