[fix](sql-functions) provide setup data for the EXPORT_SET table example#3880
Merged
morningman merged 1 commit intoJun 3, 2026
Merged
Conversation
The EXPORT_SET page shows `SELECT ... FROM test_export_set` examples with an
expected result, but never defines `test_export_set`, so the examples cannot be
run or reproduced ("table does not exist").
Add the missing CREATE TABLE + INSERT, carried in a standard HTML comment
(`<!-- setup-sql ... -->`) before the example. As an HTML comment it does not
change the rendered page, and no documented expected output is modified.
The table contents were reverse-derived from the printed input table and verified
end-to-end on version-4.x (4.1.1) and dev/current (master): the input table and the
EXPORT_SET results match the documented output exactly, including the row whose
separator is the literal "|123|".
Updated in EN + ZH across dev/current and version-4.x (the page exists only in
those two trees).
Note: a separate, pre-existing inconsistency on this page (one example's SQL selects
one column while its output table shows six) is tracked in apache#3879 and intentionally
left out of this setup-only change.
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.
The
EXPORT_SETpage showsSELECT ... FROM test_export_setexamples with an expected result, but never definestest_export_set. As written these examples cannot be run or reproduced — a reader who copies them getsTable [...] does not exist.This PR adds the missing
CREATE TABLE+INSERT, carried in a standard HTML comment (<!-- setup-sql ... -->) just before the example. Because it is an HTML comment, the rendered page is unchanged and no documented expected output is modified.The table contents were reverse-derived from the printed input table and verified end-to-end on
version-4.x(a 4.1.1 cluster) and dev/current(a master build): both the input table and theEXPORT_SET(...)results match the documented output exactly, including the row whose separator is the literal|123|.The page exists only in the dev/
currentandversion-4.xtrees; updated in EN + ZH (4 files). Noja-sourcechanges.