-
Notifications
You must be signed in to change notification settings - Fork 590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(frontend): deprecate CREATE MATERIALIZED SOURCE syntax #7281
Merged
Merged
Changes from 11 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
dadca92
deprecate CREATE MATERIALIZED SOURCE syntax
xx01cyx d2ed46c
Merge remote-tracking branch 'origin/main' into cyx/deprecate-create-…
xx01cyx 13848d8
fix ci
xx01cyx fcda273
fix ci
xx01cyx aaec00b
merge main and resolve conflicts
xx01cyx 501ab79
fix build
xx01cyx 0e9e2bd
fix planner test
xx01cyx 3833426
resolve table before source when checking duplication
xx01cyx 9d41680
fix typo in invalid operation
xx01cyx e2034d4
Merge remote-tracking branch 'origin/main' into cyx/deprecate-create-…
xx01cyx 9aa11a8
add back the test case removed before
xx01cyx faa10bd
remove match statement & remove materialized source from planner test
xx01cyx e7215b7
merge main and resolve conflicts
xx01cyx fa1a13c
Merge branch 'main' into cyx/deprecate-create-materialized-source
mergify[bot] 9f496db
Merge branch 'main' into cyx/deprecate-create-materialized-source
mergify[bot] c471f60
Merge branch 'main' into cyx/deprecate-create-materialized-source
mergify[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
statement ok | ||
DROP SOURCE customer; | ||
DROP TABLE customer; | ||
|
||
statement ok | ||
DROP SOURCE district; | ||
DROP TABLE district; | ||
|
||
statement ok | ||
DROP SOURCE history; | ||
DROP TABLE history; | ||
|
||
statement ok | ||
DROP SOURCE item; | ||
DROP TABLE item; | ||
|
||
statement ok | ||
DROP SOURCE neworder; | ||
DROP TABLE neworder; | ||
|
||
statement ok | ||
DROP SOURCE orderline; | ||
DROP TABLE orderline; | ||
|
||
statement ok | ||
DROP SOURCE orders; | ||
DROP TABLE orders; | ||
|
||
statement ok | ||
DROP SOURCE stock; | ||
DROP TABLE stock; | ||
|
||
statement ok | ||
DROP SOURCE warehouse; | ||
DROP TABLE warehouse; | ||
|
||
statement ok | ||
DROP SOURCE supplier; | ||
DROP TABLE supplier; | ||
|
||
statement ok | ||
DROP SOURCE region; | ||
DROP TABLE region; | ||
|
||
statement ok | ||
DROP SOURCE nation; | ||
DROP TABLE nation; |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤔 In which case a user may want to
show connectors
? (IIUC connectors cannot be used to do anything)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe users should be able to view all created connectors. 🤔 cc. @st1page @yezizp2012
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think user may only care about which connector is used by some table and
SHOW CREATE TABLE
is already enough for it. 🤔There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
agree. no need for
show connectors