Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libpg_query
Submodule libpg_query updated 81 files
+8 −1 .github/workflows/ci.yml
+9 −0 CHANGELOG.md
+15 −8 Makefile
+3 −3 README.md
+2 −2 pg_query.h
+2 −2 scripts/extract_source.rb
+17 −4 scripts/pg_config_overrides.h
+4 −0 src/postgres/include/access/amapi.h
+9 −0 src/postgres/include/access/genam.h
+3 −6 src/postgres/include/access/slru.h
+2 −1 src/postgres/include/access/tableam.h
+43 −0 src/postgres/include/access/transam.h
+1 −1 src/postgres/include/c.h
+4 −0 src/postgres/include/catalog/objectaddress.h
+6 −0 src/postgres/include/commands/event_trigger.h
+6 −52 src/postgres/include/common/hashfn_unstable.h
+1 −1 src/postgres/include/datatype/timestamp.h
+1 −1 src/postgres/include/executor/execdesc.h
+6 −3 src/postgres/include/libpq/libpq-be.h
+1 −0 src/postgres/include/mb/pg_wchar.h
+10 −2 src/postgres/include/miscadmin.h
+3 −0 src/postgres/include/nodes/execnodes.h
+4 −1 src/postgres/include/nodes/pathnodes.h
+1 −1 src/postgres/include/nodes/pg_list.h
+9 −5 src/postgres/include/nodes/primnodes.h
+3 −0 src/postgres/include/parser/parse_coerce.h
+28 −20 src/postgres/include/pg_config.h
+32 −1 src/postgres/include/port.h
+2 −2 src/postgres/include/port/pg_iovec.h
+0 −2 src/postgres/include/port/win32_port.h
+9 −18 src/postgres/include/replication/reorderbuffer.h
+5 −1 src/postgres/include/replication/slot.h
+2 −0 src/postgres/include/storage/lockdefs.h
+13 −16 src/postgres/include/storage/proc.h
+5 −2 src/postgres/include/storage/smgr.h
+1 −0 src/postgres/include/utils/catcache.h
+19 −0 src/postgres/include/utils/pgstat_internal.h
+1 −1 src/postgres/include/utils/portal.h
+5 −0 src/postgres/include/utils/syscache.h
+1 −1 src/postgres/src_backend_parser_gram.c
+47 −1 src/postgres/src_common_wchar.c
+14 −17 src/postgres/src_port_snprintf.c
+12 −12 test/parse_opts_tests.c
+36 −36 test/parse_tests.c
+17 −0 test/sql/plpgsql_regress/plpgsql_call.sql
+12 −0 test/sql/plpgsql_regress/plpgsql_simple.sql
+7 −2 test/sql/postgres_regress/aggregates.sql
+0 −2 test/sql/postgres_regress/alter_table.sql
+22 −0 test/sql/postgres_regress/arrays.sql
+5 −0 test/sql/postgres_regress/case.sql
+59 −0 test/sql/postgres_regress/collate.icu.utf8.sql
+5 −0 test/sql/postgres_regress/conversion.sql
+15 −9 test/sql/postgres_regress/copy2.sql
+4 −0 test/sql/postgres_regress/copydml.sql
+10 −0 test/sql/postgres_regress/create_am.sql
+7 −0 test/sql/postgres_regress/database.sql
+11 −0 test/sql/postgres_regress/domain.sql
+44 −0 test/sql/postgres_regress/fast_default.sql
+72 −1 test/sql/postgres_regress/foreign_key.sql
+1 −0 test/sql/postgres_regress/horology.sql
+8 −0 test/sql/postgres_regress/inherit.sql
+13 −0 test/sql/postgres_regress/join.sql
+4 −0 test/sql/postgres_regress/jsonb_jsonpath.sql
+52 −0 test/sql/postgres_regress/merge.sql
+4 −0 test/sql/postgres_regress/partition_join.sql
+15 −0 test/sql/postgres_regress/partition_prune.sql
+46 −10 test/sql/postgres_regress/predicate.sql
+36 −0 test/sql/postgres_regress/privileges.sql
+24 −0 test/sql/postgres_regress/returning.sql
+58 −0 test/sql/postgres_regress/rowsecurity.sql
+25 −0 test/sql/postgres_regress/sqljson.sql
+4 −1 test/sql/postgres_regress/sqljson_queryfuncs.sql
+16 −0 test/sql/postgres_regress/stats.sql
+31 −0 test/sql/postgres_regress/subselect.sql
+6 −0 test/sql/postgres_regress/tablespace.sql
+2 −1 test/sql/postgres_regress/timestamptz.sql
+46 −0 test/sql/postgres_regress/triggers.sql
+13 −0 test/sql/postgres_regress/vacuum.sql
+7 −0 test/sql/postgres_regress/window.sql
+12 −0 test/sql/postgres_regress/with.sql
+7 −3 test/sql/postgres_regress/xml.sql