Skip to content

Commit 443c1c1

Browse files
committed
Release 17-6.2.1
1 parent 1915589 commit 443c1c1

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,24 @@
22

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

5+
## 17-6.2.1 2026-01-14
6+
7+
* Add statement check function (pg_query_is_utility_stmt) [#313](https://github.com/pganalyze/libpg_query/pull/313)
8+
- This returns whether a raw statement is a utility statement
9+
* Add missing top-level postgres_deparse.h in Makefile install step
10+
- This was an oversight from the previous 6.2.0 release
11+
* Summary:
12+
- Speed up summary truncate replacement logic
13+
- Correctly handle `GRANT .. ON ALL TABLES IN SCHEMA` statements
14+
- Correctly handle schema qualified filter columns
15+
516
## 17-6.2.0 2025-12-10
617

718
* Add fast summary information function (pg_query_summary)
819
- This allows gathering certain information, for example which tables are referenced in a
920
statement, without requiring a Protobuf serialization step in a higher level library
1021
- Additionally this can also be used to perform "smart truncation" of a query by
11-
ommitting deeply nested information (e.g. a CTE definition, or a target list) whilst
22+
omitting deeply nested information (e.g. a CTE definition, or a target list) whilst
1223
preserving more essential parts like the FROM claus
1324
* Deparser:
1425
- Introduce pretty printing / formatting

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.0
15+
VERSION = 6.2.1
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)