[Fix][Doc] Delete space before _test and _sink#9216
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request fixes formatting issues in the PostgreSQL documentation by removing extraneous spaces before the suffixes "_test" and "_sink" in example table names.
- Corrected examples in Chinese documentation
- Corrected examples in English PostgreSQL documentation
- Corrected examples in English JDBC documentation
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| docs/zh/connector-v2/sink/PostgreSql.md | Removed the extra space before "_test" and "_sink". |
| docs/en/connector-v2/sink/PostgreSql.md | Removed the extra space before "_test" and "_sink". |
| docs/en/connector-v2/sink/Jdbc.md | Removed the extra space before "_test" and "_sink". |
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.
Purpose of this pull request
This pull request fixes formatting issues in the PostgreSQL documentation where a space was mistakenly added before suffixes like
_testand_sinkin example table names.Examples fixed:
${schema_name}.${table_name} _test→${schema_name}.${table_name}_testdbo.tt_${table_name} _sink→dbo.tt_${table_name}_sinkThis improves accuracy and consistency in documentation.
Related Issue: Fixes #9214
Does this PR introduce any user-facing change?
Yes. It corrects table name formatting in the documentation, which users may refer to when configuring connectors or writing SQL.
There is no behavioral change to SeaTunnel itself.
How was this patch tested?
This patch was tested by manually reviewing the affected documentation files to ensure the formatting was corrected.
Check list
New License Guide
release-note