Skip to content

Commit 995b8bd

Browse files
committed
Release 17-6.2.2
1 parent a09b7bc commit 995b8bd

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All versions are tagged by the major Postgres version, plus an individual semver for this library itself.
44

5+
## 17-6.2.2 2026-01-26
6+
7+
* pg_query_normalize: Fix handling of special strings in DefElem [#325](https://github.com/pganalyze/libpg_query/pull/325)
8+
- This avoids a crash when running the normalize function on certain utility statements
9+
* pg_query_deparse_comments_for_query: Add missing initialization [#324](https://github.com/pganalyze/libpg_query/pull/324)
10+
- This avoids a crash for callers that read the error field of the result when there is no error
11+
512
## 17-6.2.1 2026-01-14
613

714
* Add pg_query_is_utility_stmt function to determine if query text contains utility statements [#313](https://github.com/pganalyze/libpg_query/pull/313)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ PG_VERSION_MAJOR = $(call word-dot,$(PG_VERSION),1)
1212
PG_VERSION_NUM = 170007
1313
PROTOC_VERSION = 25.1
1414

15-
VERSION = 6.2.1
15+
VERSION = 6.2.2
1616
VERSION_MAJOR = $(call word-dot,$(VERSION),1)
1717
VERSION_MINOR = $(call word-dot,$(VERSION),2)
1818
VERSION_PATCH = $(call word-dot,$(VERSION),3)

0 commit comments

Comments
 (0)