[doc]The DDL and DQL column names in the context do not match#1190
Merged
Conversation
wuchong
reviewed
Jun 26, 2025
|
|
||
| ```sql | ||
| SELECT id, name FROM log_table WHERE timestamp > '2023-01-01'; | ||
| SELECT order_id, item_id FROM log_table WHERE timestamp > '2023-01-01'; |
Member
There was a problem hiding this comment.
I think the filter condition also doesn't work, because the '2023-01-01' is not a timestamp type. Could you also replace this with other meaningful condition?
Contributor
Author
There was a problem hiding this comment.
I think the filter condition also doesn't work, because the
'2023-01-01'is not a timestamp type. Could you also replace this with other meaningful condition?
Wait a moment, look look
Contributor
Author
There was a problem hiding this comment.
The timestamp field name has been changed to dt
wuchong
approved these changes
Jun 29, 2025
polyzos
pushed a commit
to polyzos/fluss
that referenced
this pull request
Aug 30, 2025
…olumn definitions (apache#1190)
polyzos
pushed a commit
to HZY-Wade/fluss
that referenced
this pull request
Aug 31, 2025
…olumn definitions (apache#1190)
Ugbot
pushed a commit
to Ugbot/fluss
that referenced
this pull request
Apr 26, 2026
…olumn definitions (apache#1190)
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
Linked issue: close #xxx
What is the purpose of the change:
Fix the issue of mismatched DDL and DQL column names in the context, ensuring that the query statement is consistent with the table structure definition.
Brief change log
Please describe the changes:
https://alibaba.github.io/fluss-docs/docs/table-design/table-types/log-table/
The DDL and DQL column names in the context do not match:
-Original statement:
SELECT * FROM log_table WHERE timestamp>'2023-01-01';-New statement:
SELECT order_i, item_id FROM log_table WHERE timestamp>'2023-01-01';API and Format
Does this change affect API or storage format:
本次修改仅调整了 SQL 查询语句和表结构定义,不影响对外 API 或数据存储格式。
Documentation
Does this change introduce a new feature:
本次修改是对现有功能的修复和优化,无需新增文档。