-
Notifications
You must be signed in to change notification settings - Fork 578
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'xxchan/latin-tyrannosaurus' into xxchan/source-test
Signed-off-by: xxchan <xxchan22f@gmail.com>
- Loading branch information
Showing
63 changed files
with
1,414 additions
and
225 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
statement ok | ||
set RW_STREAMING_ENABLE_DELTA_JOIN to true; | ||
|
||
statement error session param query_mode cannot be altered system wide | ||
alter system set query_mode to auto; | ||
|
||
connection other1 | ||
query T | ||
show RW_STREAMING_ENABLE_DELTA_JOIN; | ||
---- | ||
false | ||
|
||
statement ok | ||
set RW_STREAMING_ENABLE_DELTA_JOIN to false; | ||
|
||
statement ok | ||
alter system set rw_streaming_enable_delta_join to true; | ||
|
||
query T | ||
show RW_STREAMING_ENABLE_DELTA_JOIN; | ||
---- | ||
false | ||
|
||
sleep 1s | ||
|
||
connection other2 | ||
query T | ||
show RW_STREAMING_ENABLE_DELTA_JOIN; | ||
---- | ||
true | ||
|
||
statement ok | ||
alter system set RW_STREAMING_ENABLE_DELTA_JOIN to default; |
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.