[fix](doc) dev: replace stray ${tableName_21} placeholder in to-quantile-state#3862
Open
boluor wants to merge 1 commit into
Open
[fix](doc) dev: replace stray ${tableName_21} placeholder in to-quantile-state#3862boluor wants to merge 1 commit into
boluor wants to merge 1 commit into
Conversation
…ile-state Backport of apache#3852/apache#3856 to dev. The ZH to-quantile-state.md CREATE TABLE example still carries the unsubstituted doc-template variable ${tableName_21}, while the following INSERT/SELECT reference the literal quantile_state_agg_test, so every statement after CREATE fails with table-not-found. Use the literal name to match. 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 | +----------+------+--------------------------------------------+ Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Backport of #3852 / #3856 to dev (
i18n/zh-CN/.../current/).Problem
The ZH
to-quantile-state.mdCREATE TABLE example carries the unsubstituted doc-template variable${tableName_21}, while the INSERT/SELECT that follow reference the literalquantile_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_testin the CREATE TABLE.Cluster verification (Doris master build,
doris-0.0.0-trunk)🤖 Generated with Claude Code