summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2008-11-13array_agg aggregate function, as per SQL:2008, but without ORDER BY clausePeter Eisentraut
2008-11-13PGDLLIMPORT-ize the global variables referenced in pg_crc.h.Tom Lane
2008-11-13Updated parser file to the one generated by the latest version of parse.[awk|...Michael Meskes
2008-11-13Removed two non-terminals:Michael Meskes
2008-11-13Fix libpq certificate validation for SSL connections.Magnus Hagander
2008-11-13Arrange to cache the results of looking up a btree predicate proof comparisonTom Lane
2008-11-12In predtest.c, install a limit on the number of branches we will process inTom Lane
2008-11-12Update URL to Ross Williams' CRC paper.Alvaro Herrera
2008-11-12Do not use ICONST/SCONST in rules other than Iconst/Sconst.Michael Meskes
2008-11-12If we're going to use a SQL function for this, at least make it schema-proof.Tom Lane
2008-11-12array_length() function, and for SQL compatibility also cardinality()Peter Eisentraut
2008-11-12Fix off-by-one error in autovacuum shmem struct sizing. This could lead toHeikki Linnakangas
2008-11-12Clean up the ancient decision to show only two fractional-seconds digitsTom Lane
2008-11-11Ensure that the phrels sets of PlaceHolderVars appearing in an AppendRelInfo'sTom Lane
2008-11-11Get rid of adjust_appendrel_attr_needed(), which has been broken ever sinceTom Lane
2008-11-11Make psql report "SSL connection (unknown cipher)" when libpq has setMagnus Hagander
2008-11-11Fix sloppy omission of now-required #include's.Tom Lane
2008-11-11Change error messages to print the physical path, likeHeikki Linnakangas
2008-11-11Replaced manually synced preproc.y by the one created by the new script.Michael Meskes
2008-11-11Add an explicit caution about how to use pg_do_encoding_conversion withTom Lane
2008-11-11Add support for input and output of interval values formatted per ISO 8601;Tom Lane
2008-11-10Fix a case of string building.Alvaro Herrera
2008-11-10Fix bugs in sqlchar_to_unicode and unicode_to_sqlchar: both were measuringTom Lane
2008-11-10Fix 'Q' format char parsing in the new to_timestamp() code. Used to crash.Heikki Linnakangas
2008-11-10Add a --locale switch to createdb, to ease the creation of databases withAlvaro Herrera
2008-11-10pg_do_encoding_conversion cannot return NULL (at least not unless the inputTom Lane
2008-11-10Make relhasrules and relhastriggers work like relhasindex, namely we letTom Lane
2008-11-09Replace pg_class.reltriggers with relhastriggers, which is just a boolean hintTom Lane
2008-11-09Add a startup check that pg_xlog and pg_xlog/archive_status exist.Tom Lane
2008-11-09Add a new GUC variable called "IntervalStyle" that decouples interval outputTom Lane
2008-11-08Fix recently added code for SQL years-months interval syntax so thatTom Lane
2008-11-07Implement ALTER DATABASE SET TABLESPACE to move a whole database (or at leastTom Lane
2008-11-06Improve bulk-insert performance by keeping the current target buffer pinnedTom Lane
2008-11-06Improve psql's \dC command to take a pattern parameter. Casts are shownTom Lane
2008-11-06The logic in systable_beginscan to translate heap attribute numbers toHeikki Linnakangas
2008-11-05This maneuver really requires a comment ...Tom Lane
2008-11-05change fix for suppress_redundant_updates_trigger() where relation has Oids, ...Andrew Dunstan
2008-11-05fix suppress_redundant_updates_trigger() where relation has Oids, per gripe f...Andrew Dunstan
2008-11-05A few additional test cases for array functionalityPeter Eisentraut
2008-11-05Rename several aliases for PLpgSQL_datum.dno to also be called dno.Tom Lane
2008-11-04Revert unwanted patch, per Tom.Alvaro Herrera
2008-11-04Remove unused rfno from PLpgSQL_recfieldAlvaro Herrera
2008-11-04Fix bug introduced in recent patch to make plpython cope with OUT arguments:Tom Lane
2008-11-04ADD array_ndims functionPeter Eisentraut
2008-11-04Fix compiler warning about uninitialized variablePeter Eisentraut
2008-11-04Disallow LOCK TABLE outside a transaction block (or function), since this caseTom Lane
2008-11-04Fix compiler warnings (including a seriously bogus elog call); minorTom Lane
2008-11-03Use bool for a boolean flag.Tom Lane
2008-11-03Allow uuid_in() to parse a wider variety of variant input formats for the UUIDPeter Eisentraut
2008-11-03Dept of second thoughts: seems it'd be safer if pg_typeof is markedTom Lane