summaryrefslogtreecommitdiff
path: root/src/backend/bootstrap
AgeCommit message (Expand)Author
2002-12-15Revise executor APIs so that all per-query state structure is built inTom Lane
2002-12-13Phase 3 of read-only-plans project: ExecInitExpr now builds expressionTom Lane
2002-11-14Rename server_min_messages to log_min_messages. Part of consolidationBruce Momjian
2002-11-11Code review for ON COMMIT patch. Make the actual on-commit action happenTom Lane
2002-11-09Add code to handle [ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP }]Bruce Momjian
2002-11-04Remove no-longer-needed inclusion of bootstrap_tokens.h, per patchTom Lane
2002-11-01Arrange to compile flex output files as inclusions into other filesTom Lane
2002-09-26Ensure that before truncating CLOG, we force a checkpoint even if noTom Lane
2002-09-25Remove ShutdownBufferPoolAccess exit callback, and do the work inTom Lane
2002-09-22Replace pg_attribute.attisinherited with attislocal and attinhcountTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-09-02Code review for HeapTupleHeader changes. Add version number to page headersTom Lane
2002-08-30AUTOCOMMIT mode is now an available backend GUC variable; setting itTom Lane
2002-08-17Reverse out XLogDir/-X write-ahead log handling, per discussion.Bruce Momjian
2002-08-10This patch removes a lot of unused code related to assertions andBruce Momjian
2002-08-04Implement WAL log location control using "-X" or PGXLOG.Thomas G. Lockhart
2002-08-02When compiling with --enable-cassert, check for reference count leaksTom Lane
2002-08-02ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane
2002-07-30Since we're depending on %option noyywrap in the main scanner now,Tom Lane
2002-07-20oid is needed, it is added at the end of the struct (after the nullBruce Momjian
2002-07-12Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.Tom Lane
2002-06-20Update copyright to 2002.Bruce Momjian
2002-06-11Katherine Ward wrote:Jan Wieck
2002-05-21Remove global variable scanCommandId in favor of storing a command IDTom Lane
2002-05-20Restructure indexscan API (index_beginscan, index_getnext) perTom Lane
2002-05-17Merge the last few variable.c configuration variables into the genericTom Lane
2002-05-05Create an internal semaphore API that is not tied to SysV semaphores.Tom Lane
2002-04-27Support toasting of shared system relations, and provide toast tables forTom Lane
2002-04-25Implement types regprocedure, regoper, regoperator, regclass, regtypeTom Lane
2002-04-17Opclasses live in namespaces. I also took the opportunity to createTom Lane
2002-04-09Functions live in namespaces. Qualified function names work, egTom Lane
2002-04-01Attached is a patch which adds 2 missing semi-colons toBruce Momjian
2002-03-31Reimplement temp tables using schemas. The temp table map is history;Tom Lane
2002-03-26pg_class has a relnamespace column. You can create and access tablesTom Lane
2002-03-15Repair two problems with WAL logging of sequence nextvalI() ops, asTom Lane
2002-03-08Add missing colon to getopt() arg.Tom Lane
2002-03-02Commit to match discussed elog() changes. Only update is that LOG isBruce Momjian
2002-02-23Save source of GUC settings, allowing different sources to be processed inPeter Eisentraut
2002-01-10The result of getopt() should be compared to -1, not EOF, perTom Lane
2002-01-09Fix include paths for case of VPATH build.Tom Lane
2001-11-16Make the yacc rules safe for parallel make. See discussion on pgsql-patchesPeter Eisentraut
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
2001-10-19Ensure that all startup paths (postmaster, standalone postgres, orTom Lane
2001-09-29Implement new 'lightweight lock manager' that's intermediate betweenTom Lane
2001-09-27Remove useless LockDisable() function and associated overhead, per myTom Lane
2001-08-25Hide backend debug output in initdb by default. To that end, the bootstrapPeter Eisentraut
2001-08-22remove no longer needed -Wno-errorPeter Eisentraut
2001-08-21Restructure pg_opclass, pg_amop, and pg_amproc per previous discussions inTom Lane
2001-08-10Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane
2001-08-04Fix handling of SIGCHLD, per recent pghackers discussion: on someTom Lane