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
path:
root
/
src
/
backend
/
commands
Commit message (
Expand
)
Author
Age
Files
Lines
*
Reduce amount of memory used per tuple for after-event triggers. This
Tom Lane
2001-03-14
1
-23
/
+24
*
COPY should handle after-insert triggers the same as execMain.c does.
Tom Lane
2001-03-14
1
-5
/
+4
*
ifdef out reindex stuff in VACUUM for safety.
Hiroshi Inoue
2001-03-14
1
-1
/
+9
*
Avoid O(N^2) behavior in deferredTriggerAddEvent() for large numbers of
Tom Lane
2001-03-12
1
-8
/
+23
*
Repair a number of places that didn't bother to check whether PageAddItem
Tom Lane
2001-03-07
1
-2
/
+3
*
Tweak portal (cursor) code so that it will not call the executor again
Tom Lane
2001-02-27
1
-19
/
+41
*
Reindex of shared system indexes must be overwrite mode.
Hiroshi Inoue
2001-02-23
1
-2
/
+5
*
Clean up two rather nasty bugs in operator selection code.
Tom Lane
2001-02-16
1
-11
/
+16
*
Change scoping of table and join refnames to conform to SQL92: a JOIN
Tom Lane
2001-02-14
1
-3
/
+2
*
Added some comments to setval, setval_is_called and do_setval
Philip Warner
2001-02-13
1
-1
/
+22
*
Rearrange order of operations in heap_create_with_catalog so that if
Tom Lane
2001-02-12
1
-2
/
+4
*
Clean up handling of tuple descriptors so that result-tuple descriptors
Tom Lane
2001-01-29
2
-15
/
+15
*
Looks like I broke cases involving combinations of deferred update/delete
Tom Lane
2001-01-27
1
-31
/
+50
*
Suppress coredump when EXPLAINing query that is rewritten to include
Tom Lane
2001-01-27
1
-2
/
+12
*
Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.
Bruce Momjian
2001-01-24
21
-42
/
+42
*
Narrow scope of critical section, per discussion 1/19/01.
Tom Lane
2001-01-23
1
-2
/
+2
*
Fix all the places that called heap_update() and heap_delete() without
Tom Lane
2001-01-23
11
-55
/
+55
*
Rename int4 to int32 in a few places.
Bruce Momjian
2001-01-23
2
-3
/
+3
*
Clean up per-tuple memory leaks in trigger firing and plpgsql
Tom Lane
2001-01-22
2
-33
/
+63
*
Make critical sections (elog->crash) and interrupt holdoff sections
Tom Lane
2001-01-19
1
-8
/
+7
*
Suppress compiler warning in MULTIBYTE case.
Tom Lane
2001-01-19
1
-2
/
+2
*
Change lcons(x, NIL) to makeList(x) where appropriate.
Bruce Momjian
2001-01-17
1
-3
/
+4
*
Need to do BufferSync at end of DROP DATABASE as well as CREATE DATABASE.
Tom Lane
2001-01-14
1
-3
/
+13
*
Restructure backend SIGINT/SIGTERM handling so that 'die' interrupts
Tom Lane
2001-01-14
3
-14
/
+7
*
Add more critical-section calls: all code sections that hold spinlocks
Tom Lane
2001-01-12
2
-14
/
+14
*
Preserve constraints and column defaults during CLUSTER.
Tom Lane
2001-01-12
1
-2
/
+2
*
Do The Right Thing (tm) if asked to cluster a temp table. Previous
Tom Lane
2001-01-10
1
-8
/
+17
*
Keep relations open until they are no longer needed.
Hiroshi Inoue
2001-01-08
1
-2
/
+3
*
Clean up checking of relkind for ALTER TABLE and LOCK TABLE commands.
Tom Lane
2001-01-07
1
-91
/
+39
*
Fix copy to make it more robust against unexpected character
Tatsuo Ishii
2001-01-06
1
-25
/
+39
*
Disallow creation of a child table by a user who does not own the parent
Tom Lane
2001-01-05
1
-1
/
+8
*
New file format for COPY BINARY, in accordance with pghackers discussions
Tom Lane
2001-01-03
1
-179
/
+249
*
MakeRetrieveViewRuleName was scribbling on memory that didn't belong
Tom Lane
2001-01-03
1
-10
/
+11
*
CLUSTER forgot to create a TOAST table for the clustered relation.
Tom Lane
2001-01-01
1
-6
/
+17
*
1. WAL needs in zero-ed content of newly initialized page.
Vadim B. Mikheev
2000-12-30
1
-10
/
+22
*
New WAL version - CRC and data blocks backup.
Vadim B. Mikheev
2000-12-28
2
-71
/
+107
*
Fix portability problems recently exposed by regression tests on Alphas.
Tom Lane
2000-12-27
1
-55
/
+7
*
Small cleanup of temp-table handling. Disallow creation of a non-temp
Tom Lane
2000-12-22
3
-12
/
+16
*
Revise lock manager to support "session level" locks as well as "transaction
Tom Lane
2000-12-22
1
-41
/
+49
*
Fix longstanding bug with VIEW using BETWEEN: OffsetVarNodes would get
Tom Lane
2000-12-21
1
-28
/
+29
*
Ensure that 'errno' is saved and restored by all signal handlers that
Tom Lane
2000-12-18
1
-1
/
+4
*
Clean up backend-exit-time cleanup behavior. Use on_shmem_exit callbacks
Tom Lane
2000-12-18
1
-4
/
+2
*
Remove a few remaining vestiges of elog(WARN).
Tom Lane
2000-12-15
2
-5
/
+5
*
Change StoreCatalogInheritance() to work from a list of parent relation
Tom Lane
2000-12-14
1
-64
/
+55
*
Add missing copyright and RCS identification header.
Tom Lane
2000-12-08
1
-2
/
+8
*
Remove error check that disallowed setval() on a sequence with cache
Tom Lane
2000-12-08
1
-14
/
+6
*
Cache invalidation for vacuum of system tables.
Hiroshi Inoue
2000-12-08
1
-1
/
+6
*
REINDEX under WAL.
Hiroshi Inoue
2000-12-08
1
-2
/
+6
*
From Stephan Szabo:
Tom Lane
2000-12-05
1
-15
/
+22
*
Ensure that all uses of <ctype.h> functions are applied to unsigned-char
Tom Lane
2000-12-03
4
-13
/
+13
[next]