summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/ruleutils.c
AgeCommit message (Expand)Author
2007-07-17Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway
2007-06-18Arrange for quote_identifier() and pg_dump to not quote keywords that areTom Lane
2007-06-11Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane
2007-06-11Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane
2007-06-05Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane
2007-05-24Remove ruleutils.c's use of varnoold/varoattno as a shortcut for determiningTom Lane
2007-03-27Fix array coercion expressions to ensure that the correct volatility isTom Lane
2007-03-18Code cleanup: mark some variables with the "const" modifier, when theyNeil Conway
2007-03-17Ooops, got only one of the two ArrayExpr variants correct in firstTom Lane
2007-03-17Fix up the remaining places where the expression node structure would loseTom Lane
2007-03-15Make use of plancache module for SPI plans. In particular, since plpgsqlTom Lane
2007-02-27Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).Tom Lane
2007-02-23Now that plans have flat rangetable lists, it's a lot easier to get EXPLAIN toTom Lane
2007-02-22Change Agg and Group nodes so that Vars contained in their targetlistsTom Lane
2007-02-14Fix up foreign-key mechanism so that there is a sound semantic basis for theTom Lane
2007-02-03Implement XMLSERIALIZE for real. Analogously, make the xml to text castPeter Eisentraut
2007-01-30Update documentation for pg_get_serial_sequence() function.Bruce Momjian
2007-01-25Properly detoast access to bytea field pg_trigger.tgargs. Old codeBruce Momjian
2007-01-20Simplify pg_am representation of ordering-capable access methods:Tom Lane
2007-01-20Add missing copyright blurb, make ruleutils.c use the standard layoutNeil Conway
2007-01-14Fix reverse compilation of IS DOCUMENT expression.Peter Eisentraut
2007-01-14Add support for xmlval IS DOCUMENT expression.Peter Eisentraut
2007-01-09Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane
2006-12-29Fix multiple breakages in last XML patch.Tom Lane
2006-12-29De-escape XML names when reverse-compiling XML expressions.Peter Eisentraut
2006-12-24Code review for XML patch. Instill a bit of sanity in the location ofTom Lane
2006-12-23Restructure operator classes to allow improved handling of cross-data-typeTom Lane
2006-12-21Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut
2006-11-10Fix pg_get_serial_sequence(), which could incorrectly return the nameTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-10-01Fix overly enthusiastic Assert introduced in 8.1: it's expecting aTom Lane
2006-08-21Fix all known problems with pg_dump's handling of serial sequencesTom Lane
2006-08-12Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane
2006-08-02Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway
2006-07-27Aggregate functions now support multiple input arguments. I also tookTom Lane
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-07-04Fix typos in comments.Neil Conway
2006-07-03Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane
2006-07-02Add FILLFACTOR to CREATE INDEX.Bruce Momjian
2006-06-16Fix problems with cached tuple descriptors disappearing while still in useTom Lane
2006-05-28Fix up pg_dump to do string escaping fully correctly for client encodingTom Lane
2006-05-26Use E'' strings internally only when standard_conforming_strings =Bruce Momjian
2006-04-30Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane
2006-04-22Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane
2006-04-08Fix EXPLAIN so that it can drill down through multiple levels of subplanTom Lane
2006-04-04Modify all callers of datatype input and receive functions so that if theseTom Lane
2006-03-16Clean up representation of function RTEs for functions returning RECORD.Tom Lane
2006-03-14Improve parser so that we can show an error cursor position for errorsTom Lane
2006-03-11Remove copyright notices from Jan (per author approval), and those filesBruce Momjian
2006-03-07Remove the stub support we had for UNION JOIN; per discussion, this isTom Lane