summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2002-04-06Implement partial-key searching of syscaches, per recent suggestionTom Lane
2002-04-05This patch adds a missing heap_freetuple() to renamerel(), documentsBruce Momjian
2002-04-05Add INSERT(..., DEFAULT, ).Bruce Momjian
2002-04-05Looks like a small patch is needed as well to do the right thing on Linux.Bruce Momjian
2002-04-05Undo not-so-hot decision to postpone insertion of default values intoTom Lane
2002-04-05Divide functions into three volatility classes (immutable, stable, andTom Lane
2002-04-04Cleanup of level ordering and add missing LOG entry.Bruce Momjian
2002-04-04Add missing mention of 'log' option for client_min_messages.Bruce Momjian
2002-04-04Authentication improvements:Bruce Momjian
2002-04-03Locale support is on by default. The choice of locale is done in initdbPeter Eisentraut
2002-04-03Replace perror() calls by elog()s, so that messages can be routed toTom Lane
2002-04-03Allow postmaster to start up anyway when PGSTAT code fails to initialize,Tom Lane
2002-04-02Removed obsolete DROP_COLUMN_HACK stuff.Hiroshi Inoue
2002-04-02Tweak SERIAL column creation to emit a fully qualified sequence nameTom Lane
2002-04-02Fix CLOG truncation code to not do the Wrong Thing when there are alreadyTom Lane
2002-04-02Make VACUUM handle schema-qualified relation names properly.Tom Lane
2002-04-01Add tgconstrrelid to stored Trigger structures, make RI trigger functionsTom Lane
2002-04-01Attached is a patch which adds 2 missing semi-colons toBruce Momjian
2002-04-01ALTER TABLE SET/DROP NOT NULL, from Christopher Kings-Lynne.Tom Lane
2002-04-01Create a new GUC variable search_path to control the namespace searchTom Lane
2002-04-01Temporary kluge to let RI triggers work on tables outside the systemTom Lane
2002-03-31Make renamerel take an OID, not a RangeVar, to identify the relationTom Lane
2002-03-31Reimplement temp tables using schemas. The temp table map is history;Tom Lane
2002-03-30Further cleanups for relations in schemas: teach nextval and otherTom Lane
2002-03-29Mop-up some infelicities in new relation lookup handling.Tom Lane
2002-03-29pg_type has a typnamespace column; system now supports creating typesTom Lane
2002-03-26pg_class has a relnamespace column. You can create and access tablesTom Lane
2002-03-24Tweak labeling of plan qual conditions for more consistency.Tom Lane
2002-03-24EXPLAIN output now comes out as a query result, not a NOTICE message.Tom Lane
2002-03-22Create the pg_namespace system catalog. Doesn't do much yet, but it'sTom Lane
2002-03-22Improve catalog commentary.Tom Lane
2002-03-22A little further progress on schemas: push down RangeVars intoTom Lane
2002-03-21Change the aclchk.c routines to uniformly use OIDs to identify theTom Lane
2002-03-21First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane
2002-03-21Remove long-dead 'fix for SELECT NULL' to stop current coredump.Tom Lane
2002-03-20Code review for DOMAIN patch.Tom Lane
2002-03-20Tweak behavior of array slicing operations: seems like it ought to beTom Lane
2002-03-19Make CREATE DOMAIN emit CREATE DOMAIN on completion, per Peter E.Bruce Momjian
2002-03-19Fix DOMAIN breakage.Bruce Momjian
2002-03-19The attached patch cleans up the implementation of the TRUNCATE command;Bruce Momjian
2002-03-19Fix for trigger handling:Bruce Momjian
2002-03-19Add DOMAIN support. Includes manual pages and regression tests, fromBruce Momjian
2002-03-19Comment patch:Bruce Momjian
2002-03-16Try to make array_in's behavior a tad less bizarre. Leading whitespaceTom Lane
2002-03-15Repair two problems with WAL logging of sequence nextvalI() ops, asTom Lane
2002-03-14The attached patch changes ALTER TABLE OWNER to also change theBruce Momjian
2002-03-13MovePeter Eisentraut
2002-03-12Restructure representation of join alias variables. An explicit JOINTom Lane
2002-03-10Add DEFAULT_INDEX_TYPE == "btree", for clarity.Bruce Momjian
2002-03-10Disable brackets in multi-statement rules, as discussed.Bruce Momjian