summaryrefslogtreecommitdiff
path: root/src/backend/tcop
AgeCommit message (Expand)Author
2002-08-10This patch removes a lot of unused code related to assertions andBruce Momjian
2002-08-07Fix permission checking for temp-table namespace.Tom Lane
2002-08-06This patch changes the behavior of PostgreSQL so that if any queries areBruce Momjian
2002-08-04Temporary solution for XLogDir breakage.Tom Lane
2002-08-04Implement WAL log location control using "-X" or PGXLOG.Thomas G. Lockhart
2002-08-04The attached patch implements START TRANSACTION, per SQL99. TheBruce Momjian
2002-07-30The attached patch removes the last remnants of support forBruce Momjian
2002-07-30Move alarm timers to proper location.Bruce Momjian
2002-07-30Make statement_timeout apply to entire query string, not per statement.Bruce Momjian
2002-07-29Implement CREATE/DROP OPERATOR CLASS. Work still remains: need moreTom Lane
2002-07-25Implement DROP CONVERSIONTatsuo Ishii
2002-07-18pg_cast table, and standards-compliant CREATE/DROP CAST commands, plusPeter Eisentraut
2002-07-18Implement DROP SCHEMA. It lacks support for dropping conversions andTom Lane
2002-07-13Add SET statement_timeout capability. Timeout is in ms. A value ofBruce Momjian
2002-07-12Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.Tom Lane
2002-07-11Add new CREATE CONVERSION/DROP CONVERSION command.Tatsuo Ishii
2002-07-01First phase of applying Rod Taylor's pg_depend patch. This just addsTom Lane
2002-06-20Update copyright to 2002.Bruce Momjian
2002-06-20Improve COPY syntax to use WITH clause, keep backward compatibility.Bruce Momjian
2002-06-18Change CREATE DATABASE to use DefElem instead of constructing structureBruce Momjian
2002-05-21Remove SetQuerySnapshot() from FETCH processing. No longer necessaryTom Lane
2002-05-18Revise command completion tags as per hackers message on 20 March.Peter Eisentraut
2002-05-17Extend syntax of CREATE FUNCTION to resemble SQL99.Peter Eisentraut
2002-05-17Merge the last few variable.c configuration variables into the genericTom Lane
2002-05-10Suppress duplicate logging of utility commands under debug_print_query.Tom Lane
2002-05-05Create an internal semaphore API that is not tied to SysV semaphores.Tom Lane
2002-04-30Clean up loose ends remaining from schema privileges discussion.Tom Lane
2002-04-27Restructure aclcheck error reporting to make permission-failureTom Lane
2002-04-24Attached is a patch for ALTER TRIGGER RENAME per the above thread. IBruce Momjian
2002-04-20Scanner performance improvementsPeter Eisentraut
2002-04-18Rule names are now unique per-relation, rather than unique globally.Tom Lane
2002-04-15The contents of command.c, creatinh.c, define.c, remove.c and rename.cTom Lane
2002-04-12Checking to decide whether relations are system relations now dependsTom Lane
2002-04-12Update new Russian FAQ.Bruce Momjian
2002-04-09Functions live in namespaces. Qualified function names work, egTom Lane
2002-04-01ALTER TABLE SET/DROP NOT NULL, from Christopher Kings-Lynne.Tom 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-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-24EXPLAIN output now comes out as a query result, not a NOTICE message.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-20Code review for DOMAIN patch.Tom 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-19Add DOMAIN support. Includes manual pages and regression tests, fromBruce Momjian