index
:
delta/postgresql.git
REL2_0B
REL6_4
REL6_5_PATCHES
REL7_0_PATCHES
REL7_1_STABLE
REL7_2_STABLE
REL7_3_STABLE
REL7_4_STABLE
REL8_0_STABLE
REL8_1_STABLE
REL8_2_STABLE
REL8_3_STABLE
REL8_4_STABLE
REL8_5_ALPHA1_BRANCH
REL8_5_ALPHA2_BRANCH
REL8_5_ALPHA3_BRANCH
REL9_0_ALPHA4_BRANCH
REL9_0_ALPHA5_BRANCH
REL9_0_STABLE
REL9_1_STABLE
REL9_2_STABLE
REL9_3_STABLE
REL9_4_STABLE
REL9_5_STABLE
REL9_6_STABLE
REL_10_STABLE
REL_11_STABLE
REL_12_STABLE
REL_13_STABLE
REL_14_STABLE
REL_15_STABLE
Release_1_0_3
WIN32_DEV
ecpg_big_bison
master
git.postgresql.org: git/postgresql.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Stamp release 7.4.7.
Tom Lane
2005-01-30
6
-64
/
+226
*
We haven't had a fixed limit on rule recursion depth since 7.3 ...
Tom Lane
2005-01-29
1
-7
/
+6
*
Make sure contrib C functions are marked strict where needed.
Tom Lane
2005-01-29
8
-76
/
+58
*
Check that aggregate creator has the right to execute the transition
Tom Lane
2005-01-27
2
-2
/
+41
*
Now that I look at it, int_array_enum() didn't work either.
Tom Lane
2005-01-27
1
-0
/
+5
*
Fix security and 64-bit issues in contrib/intagg. This code could
Tom Lane
2005-01-27
2
-59
/
+51
*
Back-patch 8.0 version of plperl_hash_from_tuple() into prior releases
Tom Lane
2005-01-26
1
-48
/
+25
*
Mark the text_soundex() function as "strict", to avoid crashing on NULL
Neil Conway
2005-01-26
1
-1
/
+1
*
Disallow LOAD to non-superusers. Per report from John Heasman.
Tom Lane
2005-01-24
1
-1
/
+5
*
Fix memory leak in rtdosplit, per report from Clive Page.
Tom Lane
2005-01-24
1
-1
/
+3
*
The result of a FULL or RIGHT join can't be assumed to be sorted by the
Tom Lane
2005-01-23
3
-5
/
+16
*
Prevent overrunning a heap-allocated buffer if more than 1024 parameters
Neil Conway
2005-01-21
1
-1
/
+5
*
Fix mapping infinite timestamp values to arbitrary dates.
Kris Jurka
2005-01-13
1
-5
/
+9
*
interval_out failed to mention 'ago' for negative intervals in SQL and
Tom Lane
2005-01-11
2
-3
/
+3
*
Avoid memory leakage during VACUUM FULL when an index expression or
Tom Lane
2004-12-23
1
-1
/
+3
*
Make array_cat more paranoid about checking datatypes in empty arrays.
Tom Lane
2004-12-17
1
-17
/
+17
*
array_map failed to insert correct result type in an empty array.
Tom Lane
2004-12-17
1
-9
/
+10
*
Avoid generating excess (and illegal) parentheses around an aliased JOIN
Tom Lane
2004-12-13
1
-2
/
+3
*
Back-patch copyOject fix for EXPLAIN/PREPARE.
Tom Lane
2004-12-13
2
-3
/
+24
*
Translation update
Peter Eisentraut
2004-12-11
1
-410
/
+417
*
Translation update
Peter Eisentraut
2004-12-11
1
-471
/
+486
*
Use StrNCpy not strncpy to fill hash key, to ensure the resulting key
Tom Lane
2004-12-03
1
-5
/
+3
*
Translation fix by Julien Cristau
Peter Eisentraut
2004-12-03
1
-3
/
+3
*
Teach regex_fixed_prefix() the correct handling of advanced regex
Tom Lane
2004-12-02
1
-8
/
+26
*
Fix timestamptz_age() to do calculation in local timezone not GMT, per bug 1332.
Tom Lane
2004-12-01
1
-14
/
+20
*
Avoid scribbling on original parsetree during DECLARE CURSOR. This
Tom Lane
2004-11-28
1
-2
/
+11
*
Install Tcl regex fixes to sync our regex engine with Tcl 8.4.8 (up from
Tom Lane
2004-11-24
1
-5
/
+10
*
Our interface code for Spencer's regexp package was checking for regexp
Tom Lane
2004-11-24
1
-6
/
+25
*
Back-patch fix for ALTER DATABASE failing to flush pg_database changes
Tom Lane
2004-11-18
1
-1
/
+9
*
Fix off-by-one memory allocation, as reported by Rod Taylor. Also
Tom Lane
2004-11-17
1
-16
/
+17
*
Backpatch fix from HEAD:
Neil Conway
2004-11-17
2
-2
/
+41
*
Translation update
Peter Eisentraut
2004-11-16
1
-924
/
+927
*
List VALUE as a keyword.
Michael Meskes
2004-11-10
1
-1
/
+2
*
In PGSharedMemoryIsInUse, assume that EACCES indicates a shmem segment
Tom Lane
2004-11-09
1
-6
/
+13
*
Fix unportable code in SockAddr_cidr_mask: you can't assume that
Tom Lane
2004-11-08
1
-19
/
+22
*
fixed bug in REVOKE statement cat_str only has 8 arguments
Dave Cramer
2004-11-01
1
-2
/
+2
*
New translations
Peter Eisentraut
2004-10-30
10
-10
/
+4529
*
Rearrange order of pre-commit operations: must close cursors before doing
Tom Lane
2004-10-29
1
-19
/
+20
*
Translation update
Peter Eisentraut
2004-10-27
1
-1024
/
+1024
*
Stamp release 7.4.6.
REL7_4_6
Tom Lane
2004-10-22
6
-20
/
+190
*
Prevent pg_ctl from being run as root. Since it uses configuration files
Tom Lane
2004-10-22
1
-1
/
+9
*
Update obsolete comments about COPY vs INSERT options, per Uwe Schroeder.
Tom Lane
2004-10-21
1
-6
/
+9
*
Correctly cast the return value of a CallableStatement when getShort
Kris Jurka
2004-10-21
1
-5
/
+8
*
Back-patch make_oidjoins_check security improvement.
Tom Lane
2004-10-21
1
-9
/
+14
*
Repair possible failure to update hint bits back to disk, per
Tom Lane
2004-10-13
3
-6
/
+32
*
Translation update
Peter Eisentraut
2004-10-12
1
-131
/
+130
*
'::' is no longer interpreted as a variable in a prepare statement.
Michael Meskes
2004-10-05
1
-4
/
+9
*
Convert pg_stat_get_backend_idset to use the existing SRF support.
Tom Lane
2004-10-01
1
-29
/
+45
*
Translation update
Peter Eisentraut
2004-09-27
1
-57
/
+59
*
Repair bug that would allow libpq to think a command had succeeded when
Tom Lane
2004-09-26
3
-22
/
+94
[prev]
[next]