Support multi args for unnest (#909)

Signed-off-by: jayzhan211 <jayzhan211@gmail.com>
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
This commit is contained in:
Jay Zhan 2023-07-01 04:50:46 +08:00 committed by GitHub
parent f05f71e20d
commit 20ac38b4da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 98 additions and 14 deletions

View file

@ -2407,7 +2407,7 @@ fn parse_create_role() {
in_role,
in_group,
role,
user,
user: _,
admin,
authorization_owner,
}],
@ -2435,7 +2435,6 @@ fn parse_create_role() {
assert_eq_vec(&["role1", "role2"], in_role);
assert!(in_group.is_empty());
assert_eq_vec(&["role3"], role);
assert!(user.is_empty());
assert_eq_vec(&["role4", "role5"], admin);
assert_eq!(*authorization_owner, None);
}