← All stories
● Covered by 1 source · 1 reportMedium impact1 neutral

PostgreSQL 19 Beta Introduces SQL/PGQ for Property Graph Queries

🔄 Updated 2h ago
New to BrevFeed? We gather this story from every outlet covering it into one summary — ranked by real-world impact, not just the latest headline — so you never miss what matters. What is BrevFeed? →

Key points

  • PostgreSQL 19 beta 3 is available.
  • It implements SQL/PGQ from SQL:2023.
  • SQL/PGQ enables property graph queries.
  • General availability is expected in late 2026.

PostgreSQL 19 Beta Release

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.

Introduction of SQL/PGQ

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)`.

Practical Application of Property Graphs

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.

Context and Resources

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 →

The daily brief

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.

Today's brief

Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.

~8 min · 6 stories · Sep 07

▶ Play today's brief Listen on Spotify

New every morning, and the back catalogue is archived by date.

Reporting from

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.