docs: mark CREATE TABLE ... FROM SOURCE as Public Preview#37639
Merged
Conversation
Source versioning / the new "table from source" syntax graduated from private preview to public preview (see the v26.25 release note). The CREATE TABLE FROM SOURCE reference, the source-versioning guides, and the MySQL (New Syntax) source page already reflected this, but the PostgreSQL and SQL Server "New Syntax" CREATE SOURCE pages still carried the Private Preview banner. Flip them to Public Preview for consistency.
kay-kim
approved these changes
Jul 14, 2026
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.
Requested by Pranshu Maheshwari · Slack thread
Motivation
The new "table from source" / source-versioning syntax has officially graduated
to Public Preview. The v26.25 release note states: "Source versioning has
graduated from private preview to public preview, and is now available by
default across all environments." The user docs should no longer show a
Private Preview banner for this feature.
Description
Most of the docs for this feature were already Public Preview:
doc/user/content/sql/create-table.md(theCREATE TABLE ... FROM SOURCEreference) — already uses
{{< public-preview />}}on all source-table tabs.No Private Preview banners remained here — the reference page was already fixed.
doc/user/content/ingest-data/{postgres,mysql,sql-server}/source-versioning.md— already Public Preview.
doc/user/content/sql/create-source/mysql-v2.md(MySQL New Syntax) — alreadyPublic Preview.
The only stragglers still carrying a Private Preview banner were the two
sibling "New Syntax"
CREATE SOURCEreference pages — the source half of thesame table-from-source workflow:
doc/user/content/sql/create-source/postgres-v2.md(line 12) — flipped{{< private-preview />}}→{{< public-preview />}}doc/user/content/sql/create-source/sql-server-v2.md(line 13) — flipped{{< private-preview />}}→{{< public-preview />}}These were flipped for consistency with the sibling
mysql-v2.mdpage and withthe v26.25 release note.
Scope note for the reviewer: The banners flipped here live on
CREATE SOURCE(New Syntax) pages rather than literally on
CREATE TABLE ... FROM SOURCE. Theybelong to the same "source versioning" feature that graduated, so flipping them
completes the rollout. If you consider these out of scope for this change, they
can be dropped — the literal
CREATE TABLE ... FROM SOURCEreference required nochanges and was already Public Preview.
The
RETAIN HISTORY"Private preview" notes increate_table_user_populated.ymland
alter_table.yml, and unrelated Private Preview banners elsewhere, wereintentionally left untouched.
Verification
rg -i "private.preview" doc/user/content/sql/create-table.mdreturns nomatches (only
public-preview), confirming theCREATE TABLE FROM SOURCEreference is fully Public Preview.
create-source/*-v2.mdpage carries a Private Previewbanner; all three (PostgreSQL, MySQL, SQL Server) are Public Preview.
Generated by Claude Code