forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitbb766cd
committed
JSON_TABLE: Add support for NESTED paths and columns
A NESTED path allows to extract data from nested levels of JSONobjects given by the parent path expression, which are projected ascolumns specified using a nested COLUMNS clause, just like the parentCOLUMNS clause. Rows comprised from a NESTED columns are "joined"to the row comprised from the parent columns. If a particular NESTEDpath evaluates to 0 rows, then the nested COLUMNS will emit NULLs,making it an OUTER join.NESTED columns themselves may include NESTED paths to allowextracting data from arbitrary nesting levels, which are likewisejoined against the rows at the parent level.Multiple NESTED paths at a given level are called "sibling" pathsand their rows are combined by UNIONing them, that is, after beingjoined against the parent row as described above.Author: Nikita Glukhov <n.gluhov@postgrespro.ru>Author: Teodor Sigaev <teodor@sigaev.ru>Author: Oleg Bartunov <obartunov@gmail.com>Author: Alexander Korotkov <aekorotkov@gmail.com>Author: Andrew Dunstan <andrew@dunslane.net>Author: Amit Langote <amitlangote09@gmail.com>Author: Jian He <jian.universality@gmail.com>Reviewers have included (in no particular order):Andres Freund, Alexander Korotkov, Pavel Stehule, Andrew Alsup,Erik Rijkers, Zihong Yu, Himanshu Upadhyaya, Daniel Gustafsson,Justin Pryzby, Álvaro Herrera, Jian HeDiscussion:https://postgr.es/m/cd0bb935-0158-78a7-08b5-904886deac4b@postgrespro.ruDiscussion:https://postgr.es/m/20220616233130.rparivafipt6doj3@alap3.anarazel.deDiscussion:https://postgr.es/m/abd9b83b-aa66-f230-3d6d-734817f0995d%40postgresql.orgDiscussion:https://postgr.es/m/CA+HiwqE4XTdfb1nW=Ojoy_tQSRhYt-q_kb6i5d4xcKyrLC1Nbg@mail.gmail.com1 parentf6a2529 commitbb766cd
File tree
17 files changed
+1207
-31
lines changed- doc/src/sgml
- src
- backend
- catalog
- nodes
- parser
- utils/adt
- include
- nodes
- parser
- interfaces/ecpg/test
- expected
- sql
- test/regress
- expected
- sql
- tools/pgindent
17 files changed
+1207
-31
lines changedLines changed: 153 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
18893 | 18893 |
| |
18894 | 18894 |
| |
18895 | 18895 |
| |
| 18896 | + | |
| 18897 | + | |
| 18898 | + | |
| 18899 | + | |
| 18900 | + | |
| 18901 | + | |
| 18902 | + | |
| 18903 | + | |
| 18904 | + | |
| 18905 | + | |
| 18906 | + | |
| 18907 | + | |
| 18908 | + | |
| 18909 | + | |
| 18910 | + | |
| 18911 | + | |
| 18912 | + | |
| 18913 | + | |
18896 | 18914 |
| |
18897 | 18915 |
| |
18898 | 18916 |
| |
| |||
18924 | 18942 |
| |
18925 | 18943 |
| |
18926 | 18944 |
| |
| 18945 | + | |
18927 | 18946 |
| |
18928 | 18947 |
| |
18929 | 18948 |
| |
| |||
18971 | 18990 |
| |
18972 | 18991 |
| |
18973 | 18992 |
| |
18974 |
| - | |
| 18993 | + | |
| 18994 | + | |
18975 | 18995 |
| |
18976 | 18996 |
| |
18977 | 18997 |
| |
| |||
19060 | 19080 |
| |
19061 | 19081 |
| |
19062 | 19082 |
| |
| 19083 | + | |
| 19084 | + | |
| 19085 | + | |
| 19086 | + | |
| 19087 | + | |
| 19088 | + | |
| 19089 | + | |
| 19090 | + | |
| 19091 | + | |
| 19092 | + | |
| 19093 | + | |
| 19094 | + | |
| 19095 | + | |
| 19096 | + | |
| 19097 | + | |
| 19098 | + | |
| 19099 | + | |
| 19100 | + | |
| 19101 | + | |
| 19102 | + | |
| 19103 | + | |
| 19104 | + | |
| 19105 | + | |
| 19106 | + | |
| 19107 | + | |
| 19108 | + | |
| 19109 | + | |
19063 | 19110 |
| |
19064 | 19111 |
| |
19065 | 19112 |
| |
| |||
19189 | 19236 |
| |
19190 | 19237 |
| |
19191 | 19238 |
| |
| 19239 | + | |
| 19240 | + | |
| 19241 | + | |
| 19242 | + | |
| 19243 | + | |
| 19244 | + | |
| 19245 | + | |
| 19246 | + | |
| 19247 | + | |
| 19248 | + | |
| 19249 | + | |
| 19250 | + | |
| 19251 | + | |
| 19252 | + | |
| 19253 | + | |
| 19254 | + | |
| 19255 | + | |
| 19256 | + | |
| 19257 | + | |
| 19258 | + | |
| 19259 | + | |
| 19260 | + | |
| 19261 | + | |
| 19262 | + | |
| 19263 | + | |
| 19264 | + | |
| 19265 | + | |
| 19266 | + | |
| 19267 | + | |
| 19268 | + | |
| 19269 | + | |
| 19270 | + | |
| 19271 | + | |
| 19272 | + | |
| 19273 | + | |
| 19274 | + | |
| 19275 | + | |
| 19276 | + | |
| 19277 | + | |
| 19278 | + | |
| 19279 | + | |
| 19280 | + | |
| 19281 | + | |
| 19282 | + | |
| 19283 | + | |
| 19284 | + | |
| 19285 | + | |
| 19286 | + | |
| 19287 | + | |
| 19288 | + | |
| 19289 | + | |
| 19290 | + | |
| 19291 | + | |
| 19292 | + | |
| 19293 | + | |
| 19294 | + | |
| 19295 | + | |
| 19296 | + | |
| 19297 | + | |
| 19298 | + | |
| 19299 | + | |
| 19300 | + | |
| 19301 | + | |
| 19302 | + | |
| 19303 | + | |
| 19304 | + | |
| 19305 | + | |
| 19306 | + | |
| 19307 | + | |
| 19308 | + | |
| 19309 | + | |
| 19310 | + | |
| 19311 | + | |
| 19312 | + | |
| 19313 | + | |
| 19314 | + | |
| 19315 | + | |
| 19316 | + | |
| 19317 | + | |
| 19318 | + | |
| 19319 | + | |
| 19320 | + | |
| 19321 | + | |
| 19322 | + | |
| 19323 | + | |
| 19324 | + | |
| 19325 | + | |
| 19326 | + | |
| 19327 | + | |
| 19328 | + | |
| 19329 | + | |
| 19330 | + | |
| 19331 | + | |
| 19332 | + | |
| 19333 | + | |
| 19334 | + | |
| 19335 | + | |
| 19336 | + | |
| 19337 | + | |
| 19338 | + | |
| 19339 | + | |
| 19340 | + | |
| 19341 | + | |
| 19342 | + | |
| 19343 | + | |
19192 | 19344 |
| |
19193 | 19345 |
| |
19194 | 19346 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
553 | 553 |
| |
554 | 554 |
| |
555 | 555 |
| |
556 |
| - | |
| 556 | + | |
557 | 557 |
| |
558 | 558 |
| |
559 | 559 |
| |
|
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4159 | 4159 |
| |
4160 | 4160 |
| |
4161 | 4161 |
| |
| 4162 | + | |
| 4163 | + | |
4162 | 4164 |
| |
4163 | 4165 |
| |
4164 | 4166 |
| |
|
Lines changed: 36 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
755 | 755 |
| |
756 | 756 |
| |
757 | 757 |
| |
758 |
| - | |
| 758 | + | |
759 | 759 |
| |
760 | 760 |
| |
761 | 761 |
| |
| |||
884 | 884 |
| |
885 | 885 |
| |
886 | 886 |
| |
| 887 | + | |
| 888 | + | |
| 889 | + | |
887 | 890 |
| |
888 |
| - | |
| 891 | + | |
889 | 892 |
| |
890 | 893 |
| |
891 | 894 |
| |
| |||
14270 | 14273 |
| |
14271 | 14274 |
| |
14272 | 14275 |
| |
| 14276 | + | |
| 14277 | + | |
| 14278 | + | |
| 14279 | + | |
| 14280 | + | |
| 14281 | + | |
| 14282 | + | |
| 14283 | + | |
| 14284 | + | |
| 14285 | + | |
| 14286 | + | |
| 14287 | + | |
| 14288 | + | |
| 14289 | + | |
| 14290 | + | |
| 14291 | + | |
| 14292 | + | |
| 14293 | + | |
| 14294 | + | |
| 14295 | + | |
| 14296 | + | |
| 14297 | + | |
| 14298 | + | |
| 14299 | + | |
| 14300 | + | |
| 14301 | + | |
| 14302 | + | |
| 14303 | + | |
| 14304 | + | |
14273 | 14305 |
| |
14274 | 14306 |
| |
14275 | 14307 |
| |
| |||
17688 | 17720 |
| |
17689 | 17721 |
| |
17690 | 17722 |
| |
| 17723 | + | |
17691 | 17724 |
| |
17692 | 17725 |
| |
17693 | 17726 |
| |
| |||
18304 | 18337 |
| |
18305 | 18338 |
| |
18306 | 18339 |
| |
| 18340 | + | |
18307 | 18341 |
| |
18308 | 18342 |
| |
18309 | 18343 |
| |
|
0 commit comments
Comments
(0)