-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into yiming/non-async-complete-barrier
- Loading branch information
Showing
107 changed files
with
3,039 additions
and
3,946 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# UNION and other complex queries should also be in local mode | ||
query I | ||
SELECT name FROM pg_catalog.pg_settings union select 'a'; | ||
SELECT amname FROM pg_catalog.pg_am union select 'a'; | ||
---- | ||
a | ||
|
||
query T | ||
SELECT name FROM (SELECT pg_catalog.lower(name) AS name FROM pg_catalog.pg_settings UNION ALL SELECT 'session authorization' UNION ALL SELECT 'all') ss WHERE substring(name,1,0)='' | ||
LIMIT 1000 | ||
SELECT amname FROM (SELECT pg_catalog.lower(amname) AS amname FROM pg_catalog.pg_am UNION ALL SELECT 'session authorization' UNION ALL SELECT 'all') ss WHERE substring(amname,1,0)='' | ||
LIMIT 1000; | ||
---- | ||
session authorization | ||
all | ||
|
||
query I | ||
with q as ( select name FROM pg_catalog.pg_settings ) select * from q; | ||
with q as ( select amname FROM pg_catalog.pg_am ) select * from q; | ||
---- |
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,23 +1,23 @@ | ||
query ITIT | ||
SELECT oid,relname,relowner,relkind FROM pg_catalog.pg_class ORDER BY oid limit 15; | ||
---- | ||
1 pg_type 1 v | ||
2 pg_namespace 1 v | ||
3 pg_cast 1 v | ||
4 pg_matviews 1 v | ||
5 pg_user 1 v | ||
6 pg_class 1 v | ||
7 pg_index 1 v | ||
8 pg_opclass 1 v | ||
9 pg_collation 1 v | ||
10 pg_am 1 v | ||
11 pg_operator 1 v | ||
12 pg_views 1 v | ||
13 pg_attribute 1 v | ||
14 pg_database 1 v | ||
1 columns 1 v | ||
2 tables 1 v | ||
3 views 1 v | ||
4 pg_am 1 v | ||
5 pg_attrdef 1 v | ||
6 pg_attribute 1 v | ||
7 pg_auth_members 1 v | ||
8 pg_cast 1 r | ||
9 pg_class 1 v | ||
10 pg_collation 1 v | ||
11 pg_constraint 1 v | ||
12 pg_conversion 1 v | ||
13 pg_database 1 v | ||
14 pg_depend 1 v | ||
15 pg_description 1 v | ||
|
||
query ITIT | ||
SELECT oid,relname,relowner,relkind FROM pg_catalog.pg_class WHERE oid = 'pg_namespace'::regclass; | ||
---- | ||
2 pg_namespace 1 v | ||
24 pg_namespace 1 v |
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
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,16 @@ | ||
[package] | ||
name = "risingwave_frontend_macro" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
homepage = { workspace = true } | ||
keywords = { workspace = true } | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
proc-macro2 = "1" | ||
quote = "1" | ||
syn = { version = "2", features = ["full", "extra-traits"] } |
Oops, something went wrong.