Support arbitrary composite access expressions (#1600)

This commit is contained in:
Ayman Elkfrawy 2024-12-22 06:22:16 -08:00 committed by GitHub
parent 84e82e6e2e
commit cd898cb6a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 96 additions and 20 deletions

View file

@ -640,7 +640,7 @@ pub enum Expr {
/// The path to the data to extract.
path: JsonPath,
},
/// CompositeAccess (postgres) eg: SELECT (information_schema._pg_expandarray(array['i','i'])).n
/// CompositeAccess eg: SELECT foo(bar).z, (information_schema._pg_expandarray(array['i','i'])).n
CompositeAccess {
expr: Box<Expr>,
key: Ident,