PostgreSQL 19 is currently in beta, with beta 3 released on August 13, 2026. The official general availability release is anticipated around September or October 2026. This beta phase allows users to explore and test new features before the final release.
A significant new feature in PostgreSQL 19 is the implementation of SQL/PGQ, which is the property-graph component of the SQL:2023 standard. This addition allows users to define and query property graphs directly within the database using existing tables.
The SQL/PGQ functionality enables pattern matching for graph queries, which can simplify operations that previously required complex manual joins. For example, users can declare a property graph over existing tables and then query it using pattern matching syntax like `MATCH (a IS person)-[IS follows]->(b IS person)`.
The property graph feature creates view-like objects that map table rows to vertices and edges without copying data. This allows for efficient querying of relationships. For instance, a `social` graph can be defined where `person` rows are vertices and `follows` rows are edges.
This capability simplifies querying multi-hop patterns, such as finding 'friends-of-friends,' without requiring self-joins. The `GRAPH_TABLE` function is used to execute these pattern-matching queries.
The information regarding PostgreSQL 19 beta 3 is based on official release notes and the PostgreSQL source code. Users can refer to the official documentation and commit logs for detailed information on motivations, usage, and implementation specifics of each feature.
✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →
One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.
One email a day. Unsubscribe in one click, any time.
Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.
▶ Play today's briefNew every morning, and the back catalogue is archived by date.
PostgreSQL 19 beta 3 includes the implementation of SQL/PGQ, the property-graph part of SQL:2023, allowing users to query graphs with pattern matching over existing tables. This feature simplifies complex queries like multi-hop patterns by eliminating the need for manual joins. The general availability of PostgreSQL 19 is expected around September or October 2026.