]> granicus.if.org Git - postgresql/history - src/backend/commands/tablecmds.c
Update copyright for 2016
[postgresql] / src / backend / commands / tablecmds.c
2016-01-02 Bruce MomjianUpdate copyright for 2016
2015-12-26 Tom LaneInclude typmod when complaining about inherited column...
2015-12-17 Alvaro HerreraRework internals of changing a type's ownership
2015-12-12 Andres FreundFix ALTER TABLE ... SET TABLESPACE for unlogged relations.
2015-11-20 Tom LaneFix handling of inherited check constraints in ALTER...
2015-11-19 Robert HaasMake ALTER .. SET SCHEMA do nothing, instead of throwin...
2015-11-17 Peter EisentrautMessage improvements
2015-10-29 Peter EisentrautMessage style improvements
2015-10-28 Robert HaasAdd missing serial comma, for consistency.
2015-10-28 Robert HaasFix incorrect message in ATWrongRelkindError.
2015-10-22 Robert HaasAdd two missing cases to ATWrongRelkindError.
2015-10-15 Alvaro HerreraFix bogus comments
2015-10-05 Stephen FrostALTER TABLE .. FORCE ROW LEVEL SECURITY
2015-08-14 Simon RiggsReduce lock levels for ALTER TABLE SET autovacuum stora...
2015-07-30 Andrew DunstanAdd IF NOT EXISTS processing to ALTER TABLE ADD COLUMN
2015-07-29 Heikki LinnakangasFix typo in comment.
2015-07-14 Heikki LinnakangasRetain comments on indexes and constraints at ALTER...
2015-07-14 Heikki LinnakangasReformat code in ATPostAlterTypeParse.
2015-06-12 Tom LaneImprove error message and hint for ALTER COLUMN TYPE...
2015-05-24 Bruce Momjianpgindent run for 9.5
2015-05-20 Heikki LinnakangasCollection of typo fixes.
2015-05-15 Fujii MasaoSupport VERBOSE option in REINDEX command.
2015-05-11 Alvaro HerreraAllow on-the-fly capture of DDL event details
2015-05-03 Tom LaneFix overlooked relcache invalidation in ALTER TABLE...
2015-04-28 Tom LaneFix ATSimpleRecursion() to allow recursion from a forei...
2015-04-26 Tom LaneAdd comments warning against generalizing default_with_...
2015-04-05 Simon RiggsReduce lock levels of some trigger DDL and add FKs
2015-04-03 Alvaro HerreraTransform ALTER TABLE/SET TYPE/USING expr during parse...
2015-03-25 Alvaro HerreraReturn ObjectAddress in many ALTER TABLE sub-routines
2015-03-24 Bruce MomjianAdd support for ALTER TABLE IF EXISTS ... RENAME CONSTRAINT
2015-03-22 Tom LaneAllow foreign tables to participate in inheritance.
2015-03-20 Bruce MomjianC comment: update lock level mention in comment
2015-03-09 Alvaro HerreraAllow CURRENT/SESSION_USER to be used in certain commands
2015-03-03 Alvaro HerreraChange many routines to return ObjectAddress rather...
2015-03-01 Tom LaneUse the typcache to cache constraints for domain types.
2015-02-27 Alvaro HerreraMake CREATE OR REPLACE VIEW internally more consistent
2015-02-22 Tom LaneGet rid of multiple applications of transformExpr(...
2015-02-20 Alvaro HerreraHave TRUNCATE update pgstat tuple counters
2015-01-06 Bruce MomjianUpdate copyright for 2015
2014-12-23 Alvaro Herreraget_object_address: separate domain constraints from...
2014-12-17 Tom LaneAllow CHECK constraints to be placed on foreign tables.
2014-12-07 Simon RiggsEvent Trigger for table_rewrite
2014-11-27 Stephen FrostRename pg_rowsecurity -> pg_policy and other fixes
2014-11-17 Alvaro HerreraFix relpersistence setting in reindex_index
2014-11-15 Alvaro HerreraGet rid of SET LOGGED indexes persistence kludge
2014-11-06 Heikki LinnakangasMove the backup-block logic from XLogInsert to a new...
2014-10-12 Peter EisentrautMessage improvements
2014-10-08 Alvaro HerreraSplit builtins.h to a new header ruleutils.h
2014-09-24 Stephen FrostCode review for row security.
2014-09-19 Stephen FrostRow-Level Security Policies (RLS)
2014-09-05 Peter EisentrautAssorted message fixes and improvements
2014-09-03 Bruce MomjianIssue clearer notice when inherited merged columns...
2014-08-25 Alvaro HerreraOops, forgot to "git add" one last change
2014-08-25 Alvaro HerreraEditorial review of SET UNLOGGED
2014-08-22 Alvaro HerreraImplement ALTER TABLE .. SET LOGGED / UNLOGGED
2014-08-21 Stephen FrostRework 'MOVE ALL' to 'ALTER .. ALL IN TABLESPACE'
2014-08-09 Tom LaneReject duplicate column names in foreign key referenced...
2014-07-31 Heikki LinnakangasMove log_newpage and log_newpage_buffer to xlog.c.
2014-07-14 Alvaro HerreraMove view reloptions into their own varlena struct
2014-06-24 Heikki LinnakangasDon't allow foreign tables with OIDs.
2014-05-06 Bruce Momjianpgindent run for 9.4
2014-04-30 Tom LaneRationalize common/relpath.[hc].
2014-04-13 Stephen FrostMake security barrier views automatically updatable
2014-04-06 Simon RiggsReduce lock levels of some ALTER TABLE cmds
2014-03-23 Noah MischOffer triggers on foreign tables.
2014-03-08 Bruce MomjianC comments: improve description of relfilenode uniqueness
2014-02-25 Robert HaasUpdate a few comments to mention materialized views.
2014-02-17 Robert HaasAvoid repeated name lookups during table and index...
2014-01-23 Alvaro HerreraMake DROP IF EXISTS more consistently not fail
2014-01-18 Stephen FrostAllow SET TABLESPACE to database default
2014-01-07 Bruce MomjianUpdate copyright for 2014
2013-12-11 Robert HaasAdd a new reloption, user_catalog_table.
2013-12-03 Heikki LinnakangasDon't include unused space in LOG_NEWPAGE records.
2013-11-29 Robert HaasRefine our definition of what constitutes a system...
2013-11-22 Tom LaneSupport multi-argument UNNEST(), and TABLE() syntax...
2013-11-10 Peter EisentrautFix whitespace issues found by git diff --check, add...
2013-11-08 Robert HaasAdd the notion of REPLICA IDENTITY for a table.
2013-10-18 Robert HaasAllow only some columns of a view to be auto-updateable.
2013-09-23 Robert HaasDon't allow system columns in CHECK constraints, except...
2013-08-15 Kevin GrittnerDon't allow ALTER MATERIALIZED VIEW ADD UNIQUE.
2013-07-18 Stephen FrostWITH CHECK OPTION support for auto-updatable VIEWs
2013-07-16 Kevin GrittnerAdd support for REFRESH MATERIALIZED VIEW CONCURRENTLY.
2013-07-05 Noah MischUpdate messages, comments and documentation for materia...
2013-07-03 Fujii MasaoGet rid of pg_class.reltoastidxid.
2013-07-02 Robert HaasUse an MVCC snapshot, rather than SnapshotNow, for...
2013-06-28 Simon RiggsALTER TABLE ... ALTER CONSTRAINT for FKs
2013-06-28 Simon RiggsAssert that ALTER TABLE subcommands have pass set
2013-06-24 Simon RiggsReverting previous commit, pending investigation
2013-06-24 Simon RiggsALTER TABLE ... ALTER CONSTRAINT for FKs
2013-06-01 Stephen FrostPost-pgindent cleanup
2013-05-29 Bruce Momjianpgindent run for release 9.3
2013-05-15 Tom LaneAllow CREATE FOREIGN TABLE to include SERIAL columns.
2013-04-12 Tom LaneClean up the mess around EXPLAIN and materialized views.
2013-04-07 Simon RiggsFix checksums for CLUSTER, VACUUM FULL etc.
2013-03-22 Kevin GrittnerFix problems with incomplete attempt to prohibit OIDS...
2013-03-22 Simon RiggsAllow I/O reliability checks using 16-bit checksums
2013-03-18 Robert HaasExtend object-access hook machinery to support post...
2013-03-12 Tom LaneAllow default expressions to be attached to columns...
2013-03-07 Robert HaasCode beautification for object-access hook machinery.
2013-03-04 Kevin GrittnerAdd a materialized view relations.
next