Re: pgsql: Partial implementation of SQL/JSON path language

2019-03-16 Thread Alexander Korotkov
сб, 16 мар. 2019 г., 18:50 Tom Lane : > Alexander Korotkov writes: > > Partial implementation of SQL/JSON path language > > Please fix the compiler warnings this produces. > > jsonpath_exec.c: In function 'executePredicate': > jsonpath_exec.c:1458: warning: 'rseqit.next' may be used uninitialized

Re: pgsql: Partial implementation of SQL/JSON path language

2019-03-16 Thread Tom Lane
Alexander Korotkov writes: > Partial implementation of SQL/JSON path language Please fix the compiler warnings this produces. jsonpath_exec.c: In function 'executePredicate': jsonpath_exec.c:1458: warning: 'rseqit.next' may be used uninitialized in this function jsonpath_exec.c:1458: warning: '

pgsql: Partial implementation of SQL/JSON path language

2019-03-16 Thread Alexander Korotkov
Partial implementation of SQL/JSON path language SQL 2016 standards among other things contains set of SQL/JSON features for JSON processing inside of relational database. The core of SQL/JSON is JSON path language, allowing access parts of JSON documents and make computations over them. This co