summaryrefslogtreecommitdiff
path: root/src/backend/utils/init/postinit.c
AgeCommit message (Expand)Author
2002-11-21Code review for superuser_reserved_connections patch. Don't try to doTom Lane
2002-10-03In a bootstrap process or standalone backend, set MaxBackends = 1Tom Lane
2002-09-04pgindent run.Bruce Momjian
2002-09-03Remove all traces of multibyte and locale options. Clean up commentsPeter Eisentraut
2002-09-02Remove sys/types.h in files that include postgres.h, and hence c.h,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-29This patch reserves the last superuser_reserved_connections slots forBruce Momjian
2002-08-29Remove #ifdef MULTIBYTE per hackers list discussion.Tatsuo Ishii
2002-07-20oid is needed, it is added at the end of the struct (after the nullBruce Momjian
2002-06-20Update copyright to 2002.Bruce Momjian
2002-06-11Katherine Ward wrote:Jan Wieck
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-01Create a new GUC variable search_path to control the namespace searchTom Lane
2002-03-31Reimplement temp tables using schemas. The temp table map is history;Tom Lane
2002-03-06Change made to elog:Bruce Momjian
2002-03-01User and database-specific session defaults for run-time configurationPeter Eisentraut
2002-02-19A bunch of changes aimed at reducing backend startup time...Tom Lane
2001-11-02Fix problem reported by Alex Korn: if a relation has been dropped andTom Lane
2001-10-28Another pgindent run. Fixes enum indenting, and improves #endifBruce Momjian
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-09-08Make the world somewhat safe for (not from) DELETE FROM pg_shadow;Peter Eisentraut
2001-09-07Get rid of PID entries in shmem hash table; there is no longer any needTom Lane
2001-09-06Commit Karel's patch.Tatsuo Ishii
2001-08-25Replace implementation of pg_log as a relation accessed through theTom Lane
2001-06-16Tweak startup sequence so that running out of PROC array slots isTom Lane
2001-05-30Remove OLD_FILE_NAMING code. No longer used.Bruce Momjian
2001-05-08Add SET SESSION AUTHORIZATION command.Peter Eisentraut
2001-04-21Remove useless setuid() call, instead add a check that real and effectiveTom Lane
2001-03-22Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian
2001-03-22pgindent run. Make it all clean.Bruce Momjian
2001-02-16Defend against starting a non-MULTIBYTE-enabled backend in a databaseTom Lane
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2001-01-19Suppress compiler warning in MULTIBYTE code.Tom Lane
2001-01-14Minor coding cleanups.Tom Lane
2001-01-12Add more critical-section calls: all code sections that hold spinlocksTom Lane
2000-12-18Clean up backend-exit-time cleanup behavior. Use on_shmem_exit callbacksTom Lane
2000-12-14BugfixJan Wieck
2000-11-30No more #ifdef XLOG.Vadim B. Mikheev
2000-11-28Significant cleanups in SysV IPC handling (shared mem and semaphores).Tom Lane
2000-11-16Change SearchSysCache coding conventions so that a reference count isTom Lane
2000-11-14Extend CREATE DATABASE to allow selection of a template database to beTom Lane
2000-11-12Keep track of the last active slot in the shared ProcState array, soTom Lane
2000-10-28WALVadim B. Mikheev