summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2002-02-24Add OWNER option to CREATE DATABASE, so superusers can create databasesTom Lane
2002-02-24pgindent copy.c. Patch wasn't in proper format.Bruce Momjian
2002-02-24Free files on dir open failure in COPY.Bruce Momjian
2002-02-23Add fstat / S_ISDIR checks to make sure we're not trying to use aBruce Momjian
2002-02-23Guard against createdb --location=PGDATA foo; without this, the codeTom Lane
2002-02-23Heimdal support (Kerberos V implementation from KTH)Peter Eisentraut
2002-02-23Save source of GUC settings, allowing different sources to be processed inPeter Eisentraut
2002-02-23Make factorial(0) return 1, as per spec.Bruce Momjian
2002-02-19Avoid failures in cash_out and cash_words for INT_MIN.Tom Lane
2002-02-19Add casts to suppress gcc warnings on Solaris (where apparently pid_tTom Lane
2002-02-19A bunch of changes aimed at reducing backend startup time...Tom Lane
2002-02-19Remove some unnecessary pqsignal() calls to shave a few cycles offTom Lane
2002-02-19Arrange to call localtime() during postmaster startup. On most Unixen,Tom Lane
2002-02-19Avoid calling pq_flush just after sending AUTH_REQ_OK; this saves oneTom Lane
2002-02-18Privileges on functions and procedural languagesPeter Eisentraut
2002-02-18Replace number-of-distinct-values estimator equation, per recentTom Lane
2002-02-18Remove MAX/MIN() macros, use c.h Max/Min() instead.Bruce Momjian
2002-02-18Disable LIMIT #,# syntax, as agreed to months ago. Print message sayingBruce Momjian
2002-02-18Reorder postgresql.conf WAL section to be clearer.Bruce Momjian
2002-02-18Don't mention TIOGA in Makefile and move strdup.c rule into properBruce Momjian
2002-02-18Add better error text:Bruce Momjian
2002-02-14Ensure that a cursor is scanned under the same scanCommandId it wasTom Lane
2002-02-12Use RTLD_NOW, not RTLD_LAZY, as binding mode for dlopen() on all platforms.Tom Lane
2002-02-12Modify COPY TO to emit carriage returns and newlines as backslash escapesTom Lane
2002-02-11Tweak GiST code to work correctly on machines where 8-byte alignmentTom Lane
2002-02-11Fix for old FreeBSD versions that don't have RTLD_GLOBALPeter Eisentraut
2002-02-11Repair problems with EvalPlanQual where target table is scanned asTom Lane
2002-02-10Don't Assert() that fsync() and close() never fail; I have seen thisTom Lane
2002-02-08Move sys/types.h to top, for hiroyuki hanai/ FreeBSD.Bruce Momjian
2002-02-07pgstat's truncation of query string needs to be multibyte-aware.Tom Lane
2002-02-07Removed a check for REINDEX TABLE.Hiroshi Inoue
2002-01-30Add cast to suppress gcc warning on Darwin platform.Tom Lane
2002-01-26Updates from Serguei MokhovPeter Eisentraut
2002-01-24Fix logic error in insert_fsm_page_entry: because compact_fsm_page_listTom Lane
2002-01-18Update from Kova'cs Zolta'nPeter Eisentraut
2002-01-16Fix misstatements added by Bruce.Tom Lane
2002-01-16Add more comments to tqual.c for visibility functions.Bruce Momjian
2002-01-16TOAST needs to do at least minimal time-qual checking in order not toTom Lane
2002-01-16Fix init_irels to close the pg_internal.init file before returning.Tom Lane
2002-01-15If we fail to rename pg_internal.init into place, delete the uselessTom Lane
2002-01-15Add more sanity-checking to PageAddItem and PageIndexTupleDelete,Tom Lane
2002-01-15Fix typo that caused equalTriggerDescs() to return false in cases whereTom Lane
2002-01-14Reduce severity of 'XLogFlush: request is not satisfied' error condition,Tom Lane
2002-01-12Repair bugs in declarations of routines to add timestamptz and interval.Thomas G. Lockhart
2002-01-11VACUUM must make sure that a HEAP_MARKED_FOR_UPDATE tuple gets markedTom Lane
2002-01-11Fix sequence creation to set the t_xmin of a sequence's tuple toTom Lane
2002-01-10The result of getopt() should be compared to -1, not EOF, perTom Lane
2002-01-09Fix use of 'char' to hold result of getc, per bug report forwarded byTom Lane
2002-01-09Fix include paths for case of VPATH build.Tom Lane
2002-01-08Fix lpad() and rpad() to produce correct results in variable-lengthTom Lane