summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_coerce.c
AgeCommit message (Expand)Author
2014-05-06Remove tabs after spaces in C commentsBruce Momjian
2010-03-04Fix IsBinaryCoercible to not confuse a cast using in/out functionsHeikki Linnakangas
2010-02-26pgindent run for 9.0Bruce Momjian
2010-02-14Wrap calls to SearchSysCache and related functions using macros.Robert Haas
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-10-31Implement parser hooks for processing ColumnRef and ParamRef nodes, as per myTom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-05-12Modify find_inheritance_children() and find_all_inheritors() to add theTom Lane
2009-05-12Do some minor code refactoring in preparation for changing the APIs ofTom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2008-12-28Support window functions a la SQL:2008.Tom Lane
2008-12-14Restore enforce_generic_type_consistency's pre-8.3 behavior of allowing anTom Lane
2008-10-31Add support for user-defined I/O conversion casts.Heikki Linnakangas
2008-10-25Add a heuristic to transformAExprIn() to make it prefer expanding "x IN (list)"Tom Lane
2008-10-13Implement comparison of generic records (composite types), and invent aTom Lane
2008-10-06When expanding a whole-row Var into a RowExpr during ResolveNew(), attachTom Lane
2008-09-10Make our parsing of INTERVAL literals spec-compliant (or at least a heck ofTom Lane
2008-09-01Add a bunch of new error location reports to parse-analysis error messages.Tom Lane
2008-08-28Extend the parser location infrastructure to include a location field inTom Lane
2008-08-25Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane
2008-07-30Allow I/O conversion casts to be applied to or from any type that is a memberTom Lane
2008-07-30Replace the hard-wired type knowledge in TypeCategory() and IsPreferredType()Tom Lane
2008-01-11The original implementation of polymorphic aggregates didn't really get theTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-11-26Fix select_common_type() so that it can select a domain type, if all inputsTom Lane
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-09-06Make eval_const_expressions() preserve typmod when simplifying something likeTom Lane
2007-08-21Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane
2007-06-06Fix up text concatenation so that it accepts all the reasonable cases thatTom Lane
2007-06-05Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane
2007-04-02Support enum data types. Along the way, use macros for the values ofTom Lane
2007-03-27Fix array coercion expressions to ensure that the correct volatility isTom Lane
2007-03-17Fix up the remaining places where the expression node structure would loseTom Lane
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-12-24Code review for XML patch. Instill a bit of sanity in the location ofTom Lane
2006-12-21Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut
2006-12-10Add a paramtypmod field to Param nodes. This is dead weight for ParamsTom Lane
2006-11-28Fix some translator comments so that xgettext finds them and pgindent doesPeter Eisentraut
2006-10-11Repair incorrect check for coercion of unknown literal to ANYARRAY, a bugTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-07-26Code review for bigint-LIMIT patch. Fix missed planner dependency,Tom Lane
2006-07-26Change LIMIT/OFFSET to use int8Bruce Momjian
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-07-13Allow include files to compile own their own.Bruce Momjian
2006-06-16Fix problems with cached tuple descriptors disappearing while still in useTom Lane
2006-04-22Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane
2006-04-05Fix a bunch of problems with domains by making them use special input functionsTom Lane
2006-04-04Modify all callers of datatype input and receive functions so that if theseTom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-01-12We neglected to apply domain constraints on UNKNOWN parameters toNeil Conway