summaryrefslogtreecommitdiff
path: root/src/test
AgeCommit message (Expand)Author
2007-07-20Fix regression tests for PL/pgSQL error message changesPeter Eisentraut
2007-07-18Fix an old thinko in SS_make_initplan_from_plan, which is used when optimizingTom Lane
2007-07-18Cast NULL to a pointer type in the execl() call, to avoid a compiler warning onAlvaro Herrera
2007-07-17Fix incorrect optimization of foreign-key checks. When an UPDATE on theTom Lane
2007-07-17Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway
2007-07-16Allow plpgsql function parameter names to be qualified with the function'sTom Lane
2007-07-09Fix stddev_pop(numeric) and var_pop(numeric), which were incorrectly producingTom Lane
2007-07-07Fix a couple of planner bugs introduced by the new ability to discardTom Lane
2007-07-06Fix up hash functions for datetime datatypes so that they don't takeTom Lane
2007-06-28Implement "distributed" checkpoints in which the checkpoint I/O is spreadTom Lane
2007-06-18Arrange for quote_identifier() and pg_dump to not quote keywords that areTom Lane
2007-06-15Tweak the API for per-datatype typmodin functions so that they are passedTom Lane
2007-06-12Fix DecodeDateTime to allow timezone to appear before year. This hadTom Lane
2007-06-12Specifying a dbname should override the default database, not add to it.Magnus Hagander
2007-06-12Fix missing variable initialization.Magnus Hagander
2007-06-12Rewrite ECPG regression test driver in C, by splitting the standardMagnus Hagander
2007-06-11Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane
2007-06-09Insert ORDER BY into a few regression test queries that now have unstableTom 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-06-03Clarify some error messages about duplicate things.Peter Eisentraut
2007-06-01Allow leading and trailing whitespace in the input to the booleanNeil Conway
2007-05-31Make some messages more consistentPeter Eisentraut
2007-05-29Fix a bug in input processing for the "interval" type. Previously,Neil Conway
2007-05-29Stop a few regression tests from needlessly disabling GEQO. This wasNeil Conway
2007-05-26Repair two constraint-exclusion corner cases triggered by proving that anTom Lane
2007-05-22Repair planner bug introduced in 8.2 by ability to rearrange outer joins:Tom Lane
2007-05-21XPath fixes:Peter Eisentraut
2007-05-17Fix parameter recalculation for Limit nodes: during a ReScan call we mustTom Lane
2007-05-12Fix the problem that creating a user-defined type named _foo, followed by oneTom Lane
2007-05-11Fix my oversight in enabling domains-of-domains: ALTER DOMAIN ADD CONSTRAINTTom Lane
2007-05-11Support arrays of composite types, including the rowtypes of regular tablesTom Lane
2007-05-01Fix a thinko in my patch of a couple months ago for bug #3116: it did theTom Lane
2007-04-30Implement rate-limiting logic on how often backends will attempt to sendTom Lane
2007-04-29Support for MOVE in PL/PgSQL. Initial patch from Magnus, some improvementsNeil Conway
2007-04-28Add support for IN as alternative to FROM in PL/PgSQL's FETCH statement,Neil Conway
2007-04-26Rename the newly-added commands for discarding session state.Neil Conway
2007-04-20Support explicit placement of the temporary-table schema within search_path.Tom Lane
2007-04-16Support scrollable cursors (ie, 'direction' clause in FETCH) in plpgsql.Tom Lane
2007-04-12RESET SESSION, plus related new DDL commands. Patch from Marko Kreen,Neil Conway
2007-04-08Make CLUSTER MVCC-safe. Heikki LinnakangasTom Lane
2007-04-08Support syntax "CLUSTER table USING index", which is more logical.Bruce Momjian
2007-04-06Make 'col IS NULL' clauses be indexable conditions.Tom Lane
2007-04-06Support varlena fields with single-byte headers and unaligned storage.Tom Lane
2007-04-05Update XML error message text for missing libxml; update regressionBruce Momjian
2007-04-02Support enum data types. Along the way, use macros for the values ofTom Lane
2007-03-30Add some instrumentation to the bgwriter, through the stats collector.Magnus Hagander
2007-03-25Add new encoding EUC_JIS_2004 and SHIFT_JIS_2004,Tatsuo Ishii
2007-03-23Fix plancache so that any required replanning is done with the sameTom Lane
2007-03-22Commit newest version of xmlpath().Bruce Momjian