[fix] remove corrupted column row from parameters system-table doc#3690
Merged
Merged
Conversation
The `parameters` system-table doc listed a garbage column row `DATA_TYPEDTD_IDENDS` after the legitimate last column `ROUTINE_TYPE`. It is a mangled artifact — both `DATA_TYPE` and `DTD_IDENTIFIER` already appear as their own correct rows in the table. Removed the corrupted row across all EN and Chinese versions. Co-Authored-By: Claude Opus 4.7 (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.
Summary
The
parameterssystem-table doc (admin-manual/system-tables/information_schema/parameters.md) listed a garbage column rowDATA_TYPEDTD_IDENDSafter the legitimate last columnROUTINE_TYPE.DATA_TYPEDTD_IDENDSis not a validinformation_schema.parameterscolumn — it is a mangled artifact. BothDATA_TYPEandDTD_IDENTIFIER(which it appears to be a corrupted concatenation of) already appear as their own correct rows in the table, so this is a redundant garbage row, not a missing column.Removed the corrupted row across all versions: EN (next + 2.1/3.x/4.x) and Chinese (next + 2.1/3.x/4.x).
Test plan
DATA_TYPEandDTD_IDENTIFIERalready exist as separate correct rowsROUTINE_TYPE, the standard last columnNote
The doc is also missing the standard MySQL
PARAMETERScolumnCHARACTER_MAXIMUM_LENGTH— a separate completeness gap, not addressed in this PR.