Waiting for 9.1 – standard_conforming_strings = on

Generally I write about new features, but this change is relatively important. Yesterday, on 20th of July, Robert Haas committed following change: Log Message: ———– Change the default value of standard_conforming_strings to on.   This change should be publicized to driver maintainers at once and release-noted as an incompatibility with previous releases.

Waiting for 9.0 – Final Post ?

As of now, I am happy user of 9.1devel version of PostgreSQL: =$ psql -c ‘select version()’ version ——————————————————————————————————————— PostgreSQL 9.1devel on x86_64-unknown-linux-gnu, compiled by GCC gcc-4.4.real (Ubuntu 4.4.3-4ubuntu5) 4.4.3, 64-bit (1 row) So, I guess no new features will make it to 9.0 – after all, 9.0 is currently already beta3. If you want … Continue reading “Waiting for 9.0 – Final Post ?”

Waiting for 9.0 – pg_upgrade

On May, 12ve, Bruce Momjian committed new contrib module for 9.0 – pg_upgrage. As I understand – this is what was available before as pg-migrator. If you’re not familiar with it – it’s a tool that allows upgrade of $PGDATA from some version to some version. What’s the use case? Let’s assume you have this … Continue reading “Waiting for 9.0 – pg_upgrade”

Waiting for 9.0 – extended frames for window functions

On 12th of February Tom Lane committed patch by Hitoshi Harada: Log Message: ———– Extend the set of frame options supported for window functions.   This patch allows the frame to start from CURRENT ROW (in either RANGE or ROWS mode), and it also adds support for ROWS n PRECEDING and ROWS n FOLLOWING start … Continue reading “Waiting for 9.0 – extended frames for window functions”

Waiting for 9.0 – string_agg

On 1st of Februyary, Takahiro Itagaki committed a patch by Pavel Stehule which adds string_agg aggregate: Log Message: ———– Add string_agg aggregate functions. The one argument version concatenates the input values into a string. The two argument version also does the same thing, but inserts delimiters between elements.   Original patch by Pavel Stehule, reviewed … Continue reading “Waiting for 9.0 – string_agg”

Waiting for 9.0 – removal of 0000000001.history check

I tend to write about new features in new versions of PostgreSQL, but this patch actually fixes one of the things that annoy me a lot, so here it goes: On 26th of January, Simon Riggs committed: Log Message: ———– Fix longstanding gripe that we check for 0000000001.history at start of archive recovery, even when … Continue reading “Waiting for 9.0 – removal of 0000000001.history check”

Waiting for 9.0 – Streaming replication

The BIG feature. The feature that made PostgreSQL leap from 8.4 to 9.0. Patch was written by Fujii Masao, and committed by Heikki Linnakangas on 15th of January 2010: Log Message: ———– Introduce Streaming Replication.   This includes two new kinds of postmaster processes, walsenders and walreceiver. Walreceiver is responsible for connecting to the primary … Continue reading “Waiting for 9.0 – Streaming replication”

Waiting for 8.5 – VACUUM FULL change

Some time ago Josh Berkus wrote about possible changes in VACUUM FULL. Now these changes came to life. By now, I mean 6th of January, when Takahiro Itagaki committed his patch: Log Message: ———– Support rewritten-based full vacuum as VACUUM FULL. Traditional VACUUM FULL was renamed to VACUUM FULL INPLACE. Also added a new option … Continue reading “Waiting for 8.5 – VACUUM FULL change”