Stable Release in branch 7.4
7.4.30
Released 01 Oct 2010
(15 years ago)
SoftwarePostgreSQL
Version7.4
Status
End of life
Initial release7.4.0
16 Nov 2003
(22 years ago)
Latest release7.4.30
01 Oct 2010
(15 years ago)
End of life01 Oct 2010
(Ended 15 years ago)
Release noteshttps://www.postgresql.org/docs/7.4/release.html
Source codehttps://github.com/postgres/postgres/tree/REL7_4_30
Documentationhttps://www.postgresql.org/docs/7.4/
Downloadhttps://www.postgresql.org/download/
PostgreSQL 7.4 ReleasesView full list

What Is New in PostgreSQL 7.4

PostgreSQL 7.4 delivers significant performance gains, enhanced SQL standards support, and improved developer tooling. This release focuses on making the database faster for analytical queries and more flexible for application development.

Category Key Changes
Performance Faster JOINs, improved optimizer, multi-vacuum
SQL Features Auto-vacuum, new data types, better constraints
Internationalization Integrated full-text search, locale-aware sorting
Server & Tooling New monitoring views, psql enhancements, SSL improvements

How did PostgreSQL 7.4 improve query performance?

The query optimizer got smarter about JOINs and subqueries. It can now perform hash joins on the inner side of nested-loop joins and has better cost estimation for merge joins. This means complex queries with multiple tables run significantly faster.

For bulk data loading, the COPY command was optimized to handle large imports more efficiently. In practice, this cuts down the time needed for ETL jobs and database migrations.

What SQL and data type enhancements were introduced?

This release added auto-vacuum, which automatically recovers space from dead tuples without manual intervention. This was a huge operational improvement, reducing the need for frequent maintenance windows.

New data types like uuid and built-in composite type input made schema design more flexible. You could now define check constraints across multiple columns, enforcing more complex business rules directly in the database.

How was internationalization support enhanced?

Full-text search was integrated directly into the core server, eliminating the need for the separate tsearch2 contrib module. This made it much easier to set up and manage text search capabilities.

Locale support was expanded for the LIKE and related operators, allowing for more accurate pattern matching in different languages. This matters for applications serving a global user base with diverse character sets.

What tools and monitoring features were updated?

The psql client saw useful additions like the \df command to display functions and the \copy command for easier data movement. These are small changes that developers use every day.

New system view pg_settings provided a SQL-accessible way to view and manage server configuration parameters. SSL connections also became more robust with support for a wider range of ciphers and protocols.

FAQ

Does auto-vacuum in 7.4 eliminate the need for manual VACUUM entirely?
Not completely. While auto-vacuum handles routine dead tuple cleanup for most workloads, manual VACUUM FULL is still required to reclaim disk space for heavily updated tables.

Is the new uuid data type generated automatically?
No, the uuid type itself is just for storage. You need to generate the UUID values using a function like uuid_generate_v4() from the contrib module in your application or via a default expression.

How does the new multi-vacuum feature work?
It allows a single VACUUM process to process multiple tables concurrently. This significantly reduces the total time required for vacuuming an entire database, especially on systems with multiple CPUs.

Were there any changes to the way TOAST handles large data?
Yes, TOAST (The Oversized-Attribute Storage Technique) became more efficient. The system can now compress and store large values in a more compact form, which can lead to storage savings and potentially faster I/O for certain operations.

Can the integrated full-text search handle multiple languages?
Yes, the new integrated tsearch2 functionality supports multiple dictionaries and stemmers, allowing you to configure text search for different languages within the same database.

Releases In Branch 7.4

VersionRelease date
7.4.3001 Oct 2010
(15 years ago)
7.4.2914 May 2010
(16 years ago)
7.4.2812 Mar 2010
(16 years ago)
7.4.2710 Dec 2009
(16 years ago)
7.4.2604 Sep 2009
(16 years ago)
7.4.2513 Mar 2009
(17 years ago)
7.4.2430 Jan 2009
(17 years ago)
7.4.2331 Oct 2008
(17 years ago)
7.4.2219 Sep 2008
(17 years ago)
7.4.2109 Jun 2008
(18 years ago)
7.4.2006 Jun 2008
(18 years ago)
7.4.1903 Jan 2008
(18 years ago)
7.4.1816 Sep 2007
(18 years ago)
7.4.1720 Apr 2007
(19 years ago)
7.4.1602 Feb 2007
(19 years ago)
7.4.1506 Jan 2007
(19 years ago)
7.4.1412 Oct 2006
(19 years ago)
7.4.1321 May 2006
(20 years ago)
7.4.1212 Feb 2006
(20 years ago)
7.4.1106 Jan 2006
(20 years ago)
7.4.1009 Dec 2005
(20 years ago)
7.4.903 Oct 2005
(20 years ago)
7.4.809 May 2005
(21 years ago)
7.4.730 Jan 2005
(21 years ago)
7.4.622 Oct 2004
(21 years ago)
7.4.518 Aug 2004
(21 years ago)
7.4.415 Aug 2004
(21 years ago)
7.4.313 Jun 2004
(22 years ago)
7.4.207 Mar 2004
(22 years ago)
7.4.121 Dec 2003
(22 years ago)
7.4.016 Nov 2003
(22 years ago)