boluor opened a new pull request, #3690: URL: https://github.com/apache/doris-website/pull/3690
## Summary The `parameters` system-table doc (`admin-manual/system-tables/information_schema/parameters.md`) listed a garbage column row `DATA_TYPEDTD_IDENDS` after the legitimate last column `ROUTINE_TYPE`. `DATA_TYPEDTD_IDENDS` is not a valid `information_schema.parameters` column — it is a mangled artifact. Both `DATA_TYPE` and `DTD_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 - [x] Confirmed `DATA_TYPE` and `DTD_IDENTIFIER` already exist as separate correct rows - [x] Confirmed the garbage row sits after `ROUTINE_TYPE`, the standard last column ## Note The doc is also missing the standard MySQL `PARAMETERS` column `CHARACTER_MAXIMUM_LENGTH` — a separate completeness gap, not addressed in this PR. -- 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]
