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
/
tablecmds.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Preserve tuple OIDs during ATRewriteTable. Per gripe from Duncan Crombie.
Tom Lane
2005-10-03
1
-1
/
+9
*
Change nextval and other sequence functions to specify their sequence
Tom Lane
2005-10-02
1
-62
/
+1
*
Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.
Tom Lane
2005-09-24
1
-3
/
+4
*
Arrange for indexes and toast tables to inherit their ownership from
Tom Lane
2005-08-26
1
-1
/
+3
*
Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump to
Tom Lane
2005-08-23
1
-1
/
+44
*
Cause ALTER INDEX OWNER to generate a warning and do nothing, rather than
Tom Lane
2005-08-22
1
-1
/
+20
*
Fix unwanted denial of ALTER OWNER rights to superusers. There was some
Tom Lane
2005-08-22
1
-18
/
+22
*
ALTER TABLE OWNER must change the ownership of the table's rowtype too.
Tom Lane
2005-08-04
1
-26
/
+48
*
Add ALTER object SET SCHEMA capability for a limited but useful set of
Tom Lane
2005-08-01
1
-1
/
+295
*
Adjust permissions checking for ALTER OWNER commands: instead of
Tom Lane
2005-07-14
1
-6
/
+17
*
Track dependencies on shared objects (which is to say, roles; we already
Tom Lane
2005-07-07
1
-1
/
+4
*
Replace pg_shadow and pg_group by new role-capable catalogs pg_authid
Tom Lane
2005-06-28
1
-14
/
+14
*
Modify XLogInsert API to make callers specify whether pages to be backed
Tom Lane
2005-06-06
1
-3
/
+3
*
Replace the parser's namespace tree (which formerly had the same
Tom Lane
2005-06-05
1
-2
/
+2
*
When enqueueing after-row triggers for updates of a table with a foreign
Neil Conway
2005-05-30
1
-42
/
+2
*
Create separate ON INSERT and ON UPDATE triggers on tables with foreign
Neil Conway
2005-05-30
1
-38
/
+60
*
Report index name on CLUSTER failure. Also, suggest ALTER TABLE
Bruce Momjian
2005-05-10
1
-2
/
+2
*
For some reason access/tupmacs.h has been #including utils/memutils.h,
Tom Lane
2005-05-06
1
-1
/
+2
*
Completion of project to use fixed OIDs for all system catalogs and
Tom Lane
2005-04-14
1
-33
/
+31
*
First phase of project to use fixed OIDs for all system catalogs and
Tom Lane
2005-04-14
1
-22
/
+26
*
Change addRangeTableEntryForRelation() to take a Relation pointer instead
Tom Lane
2005-04-13
1
-3
/
+3
*
Convert oidvector and int2vector into variable-length arrays. This
Tom Lane
2005-03-29
1
-11
/
+31
*
Fix two bugs in change_owner_recurse_to_sequences: it was grabbing an
Tom Lane
2005-03-25
1
-2
/
+4
*
Revert changes to CREATE TRIGGER and ALTER TABLE ADD FOREIGN KEY locking,
Neil Conway
2005-03-24
1
-7
/
+7
*
Adjust CREATE TRIGGER and ALTER TABLE ... ADD FOREIGN KEY to acquire
Neil Conway
2005-03-23
1
-7
/
+7
*
Remove unnecessary calls of FlushRelationBuffers: there is no need
Tom Lane
2005-03-20
1
-6
/
+5
*
Revise TupleTableSlot code to avoid unnecessary construction and disassembly
Tom Lane
2005-03-16
1
-18
/
+11
*
ALTER TABLE ADD COLUMN exhibits a significant memory leak when adding a
Neil Conway
2005-02-09
1
-16
/
+32
*
Change heap_modifytuple() to require a TupleDesc rather than a
Neil Conway
2005-01-27
1
-3
/
+3
*
Generalize TRUNCATE to support truncating multiple tables in one
Tom Lane
2005-01-27
1
-65
/
+95
*
Fix ALTER TABLE ADD COLUMN so that constraints of domain types are
Tom Lane
2005-01-24
1
-3
/
+32
*
Phase 1 of fix for 'SMgrRelation hashtable corrupted' problem. This
Tom Lane
2005-01-10
1
-4
/
+2
*
Tag appropriate files for rc3
PostgreSQL Daemon
2004-12-31
1
-2
/
+2
*
Prevent a backend crash when processing CREATE TABLE commands with
Neil Conway
2004-11-16
1
-1
/
+28
*
Create 'default_tablespace' GUC variable that supplies a TABLESPACE
Tom Lane
2004-11-05
1
-53
/
+16
*
I found a corner case in which it is possible for RI_FKey_check's call
Tom Lane
2004-10-30
1
-1
/
+3
*
In ALTER COLUMN TYPE, strip any implicit coercion operations appearing
Tom Lane
2004-10-22
1
-2
/
+9
*
Disallow referential integrity actions from being deferred; only the
Tom Lane
2004-10-21
1
-5
/
+17
*
Give a more user-friendly error message in case where a table is created
Tom Lane
2004-10-16
1
-1
/
+41
*
Message style revisions
Peter Eisentraut
2004-10-12
1
-2
/
+2
*
Fix ALTER TABLE OWNER to adjust the ownership of dependent sequences,
Tom Lane
2004-09-23
1
-5
/
+79
*
Restructure subtransaction handling to reduce resource consumption,
Tom Lane
2004-09-16
1
-26
/
+25
*
needs_toast_table() should ignore dropped columns.
Tom Lane
2004-08-31
1
-1
/
+3
*
copy_relation_data was mistakenly assuming that the source relation
Tom Lane
2004-08-31
1
-2
/
+5
*
Pgindent run for 8.0.
Bruce Momjian
2004-08-29
1
-457
/
+471
*
Update copyright to 2004.
Bruce Momjian
2004-08-29
1
-2
/
+2
*
Rearrange order of operations in heap_drop_with_catalog and index_drop
Tom Lane
2004-08-28
1
-2
/
+2
*
Dept. of further reflection: I looked around to see if any other callers
Tom Lane
2004-08-15
1
-8
/
+19
*
Change order of operations in ALTER TABLE SET TABLESPACE so that we
Tom Lane
2004-08-13
1
-8
/
+7
*
Fix silly thinko in ALTER COLUMN TYPE. Check for finding expected
Tom Lane
2004-08-04
1
-3
/
+3
[next]