summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_node.c
AgeCommit message (Expand)Author
2006-03-14Improve parser so that we can show an error cursor position for errorsTom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-05-30Change the UNKNOWN type to have an internal representation matchingTom Lane
2005-04-23Allow -2147483648 to be treated as an INT4 rather than INT8 constant.Tom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-06-09Support assignment to subfields of composite columns in UPDATE and INSERT.Tom Lane
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
2003-08-04Update copyrights to 2003.Bruce Momjian
2003-08-04pgindent run.Bruce Momjian
2003-07-19Another round of error message editing, covering backend/parser/.Tom Lane
2003-04-29Infrastructure for deducing Param types from context, in the same wayTom Lane
2003-04-08First phase of work on array improvements. ARRAY[x,y,z] constructorTom Lane
2002-12-12Preliminary code review for domain CHECK constraints patch: add documentation,Tom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-11-25Remove unused constisset and constiscast fields of Const nodes. CleanTom Lane
2002-11-15Add DOMAIN check constraints.Bruce Momjian
2002-11-13Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian
2002-11-11Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian
2002-11-10Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian
2002-09-18Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-08-26Modify array operations to include array's element type OID in theTom Lane
2002-06-20Update copyright to 2002.Bruce Momjian
2002-05-12Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane
2002-05-01Give left_oper() and right_oper() noError parameters like oper() (theTom Lane
2002-04-25Implement types regprocedure, regoper, regoperator, regclass, regtypeTom Lane
2002-04-16Operators live in namespaces. CREATE/DROP/COMMENT ON OPERATOR takeTom Lane
2002-04-11Restructure representation of aggregate functions so that they have pg_procTom Lane
2002-03-21First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane
2002-03-12Restructure representation of join alias variables. An explicit JOINTom Lane
2002-03-06Change made to elog:Bruce Momjian
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-08-09Use format_type sibling in backend error messages, so the user seesPeter Eisentraut
2001-05-22Make bit and bit varying types reject too long input. (They already triedPeter Eisentraut
2001-03-22pgindent run. Make it all clean.Bruce Momjian
2001-02-14Change scoping of table and join refnames to conform to SQL92: a JOINTom Lane
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2000-12-03Ensure that all uses of <ctype.h> functions are applied to unsigned-charTom Lane
2000-11-16Change SearchSysCache coding conventions so that a reference count isTom Lane
2000-10-31Change the parser to convert SQL "position" and "substring" syntax toPeter Eisentraut
2000-09-29Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane
2000-09-12First cut at full support for OUTER JOINs. There are still a few looseTom Lane
2000-08-24SQL-language functions are now callable in ordinary fmgr contexts ...Tom Lane
2000-08-08Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane
2000-07-05Update textin() and textout() to new fmgr style. This is just phaseTom Lane