summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2005-04-14Completion of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-13Change addRangeTableEntryForRelation() to take a Relation pointer insteadTom Lane
2005-04-07Add a "USING" clause to DELETE, which is equivalent to the FROM clauseNeil Conway
2005-04-06Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane
2005-03-31First phase of OUT-parameters project. We can now define and use SQLTom Lane
2005-03-29Fix grammar for IN/OUT/INOUT parameters. This commit doesn't actuallyTom Lane
2005-03-29Officially decouple FUNC_MAX_ARGS from INDEX_MAX_KEYS, and set theTom Lane
2005-03-29Convert oidvector and int2vector into variable-length arrays. ThisTom Lane
2005-03-26Use a bitmapset instead of a list for duplicate-column checking inTom Lane
2005-03-14Allow ALTER FUNCTION to change a function's strictness, volatility, andNeil Conway
2005-03-11Add fprintf() custom version to libpgport.Bruce Momjian
2005-03-10Make the behavior of HAVING without GROUP BY conform to the SQL spec.Tom Lane
2005-02-22Use _() macro consistently rather than gettext(). Add translationBruce Momjian
2005-02-19Ensure that the resolved datatype of any unknown Param is propagatedTom Lane
2005-02-02Add support for temporary views, including documentation and regressionNeil Conway
2005-01-27Generalize TRUNCATE to support truncating multiple tables in oneTom Lane
2005-01-19Refactor transformExpr() by creating separate functions for most of theNeil Conway
2005-01-13get_names_for_var didn't do recursion for unnamed JOIN vars quite right;Tom Lane
2005-01-12Re-allow an untyped literal as the test expression of a CASE, ieTom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-12-15Disallow SETOF in the input of parseTypeString(). Formerly it wasTom Lane
2004-12-11Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane
2004-11-16Prevent a backend crash when processing CREATE TABLE commands withNeil Conway
2004-11-08Kris Jurka pointed out that the qualified_name production wasn'tTom Lane
2004-11-06When implementing a coercion to a domain type with a combinedTom Lane
2004-11-05Create 'default_tablespace' GUC variable that supplies a TABLESPACETom Lane
2004-10-25Make error message more verbose, in hopes of avoiding misunderstandingsTom Lane
2004-10-20Allow functions returning void or cstring to appear in FROM clause,Tom Lane
2004-10-01Code review for NOWAIT patch: downgrade NOWAIT from fully reserved keywordTom Lane
2004-09-30Come to think of it, functions in FROM have the same syntactic restrictionTom Lane
2004-09-29Split out everything that looks like a function call from c_expr intoTom Lane
2004-09-27A few minor list-related cleanups:Neil Conway
2004-09-09Added a call to gettext() to fix broken translated error messages.Dennis Bjorklund
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-08-24Allow second and subsequent names in a qualified (dotted) name to beTom Lane
2004-08-22Code review for ALTER INDEX patch.Tom Lane
2004-08-20Add ALTER INDEX, particularly for moving tablespaces.Bruce Momjian
2004-08-19Repair some issues with column aliases and RowExpr construction in theTom Lane
2004-08-17Standardize on the assumption that the arguments of a RowExpr correspondTom Lane
2004-08-12Allow commas in BEGIN, START TRANSACTION, and SET TRANSACTION, as requiredTom Lane
2004-08-12Allow optional SAVEPOINT keyword in RELEASE and ROLLBACK TO, for greaterTom Lane
2004-08-02Support USING INDEX TABLESPACE clause for PRIMARY KEY and UNIQUETom Lane
2004-07-27Replace nested-BEGIN syntax for subtransactions with spec-compliantTom Lane
2004-07-12Remove TABLESPACE option of CREATE SEQUENCE; sequences will now alwaysTom Lane
2004-07-11ALTER TABLE SET TABLESPACE. Gavin Sherry, some rework by Tom Lane.Tom Lane
2004-06-28Remove some no-longer-needed #includes.Tom Lane
2004-06-28Fix some bogus code in ConstBit production --- it managed to work, butTom Lane
2004-06-25Support renaming of tablespaces, and changing the owners ofTom Lane
2004-06-19Fix oversight in recent rowtype-handling improvements: transformTargetListTom Lane