You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Squashed 'c_src/libpg_query/' changes from d00c096..7be1aed
7be1aed Release 17-6.2.2 (#326)
a09b7bc pg_query_deparse_comments_for_query: Add missing initialization (#324)
7eee7a6 pg_query_normalize: Fix handling of special strings in DefElem (#325)
b2217bf Merge pull request #322 from pganalyze/release-17-6-2-1
300dc98 Apply suggestions from code review
443c1c1 Release 17-6.2.1
1915589 Add `pg_query_is_utility_stmt()` (#313)
693209e Run pgindent on pg_query_summary.c
5e3e4a7 Summary: Correctly handle schema qualfied filter columns
d9867f6 Summary: Correctly handle "GRANT .. ON ALL TABLES IN SCHEMA" statemnets
426f56f Speed up summary truncate replacement logic (#319)
180ef56 Add missing top-level postgres_deparse.h in Makefile install step (#318)
a192b38 Release 17-6.2.0 (#314)
6c04919 Update to Postgres 17.7 (#315)
3f1b676 Add test framework support for running individual tests. (#310)
03e2f43 Fix compilation warnings for the examples in README.md (#312)
64ace44 Add summary support for MERGE statements (#311)
581c9ac Add summary support for functions invoked via CALL (#309)
bb1f456 Add truncation support to `pg_query_summary()` (#300)
cd20bb8 Fix deparse of ALTER TABLE a ALTER b SET STATISTICS DEFAULT (#303)
32dfcf8 Add pg_query_parse_summary() and supporting code (#274)
9ac12d2 Deparser: Introduce pretty printing / formatting
1d80fc4 Fix bug in handle of MultiAssignRef nodes that follow a single column
be38617 Add missing trailing space after LockingClause relation names
8d3336d Deparser: Rework handling of expressions inside typecasts
ea8822a Use lowercase keywords in xmlroot functions
82b52b2 Deparser: Introduce dedicated state structure to replace StringInfo
c863655 Bump Postgres to 17.5 and switch back to release tarballs
dabe930 Add support for CALL statements
699f2b1 Update GitHub Actions Linux OS to 24.04 (#289)
8fbb9cc Allow alternate definitions of NAMEDATALEN identifier limit (#268)
git-subtree-dir: c_src/libpg_query
git-subtree-split: 7be1aed1f1f968a36cf541319f71e845850f0381
- This avoids a crash for callers that read the error field of the result when there is no error
11
+
12
+
## 17-6.2.1 2026-01-14
13
+
14
+
* Add pg_query_is_utility_stmt function to determine if query text contains utility statements [#313](https://github.com/pganalyze/libpg_query/pull/313)
15
+
* This is a fast check for callers that don't actually need the parse tree itself
16
+
* Add missing top-level postgres_deparse.h in Makefile install step
17
+
- This was an oversight from the previous 6.2.0 release
18
+
* Improve pg_query_summary function:
19
+
- Speed up summary truncate replacement logic
20
+
- Correctly handle `GRANT .. ON ALL TABLES IN SCHEMA` statements
.PHONY: all clean build build_shared extract_source examples test install
117
117
118
118
$(PGDIR):
119
-
# We temporarily build off REL_17_STABLE to pull in https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=6da2ba1d8a031984eb016fed6741bb2ac945f19d
120
-
# TODO: Go back to upstream tarball once 17.5 is released
0 commit comments