summaryrefslogtreecommitdiff
path: root/src/bin
AgeCommit message (Expand)Author
2008-11-20TABLE commandPeter Eisentraut
2008-11-19Change this script to Perl 5 style. Add support for multiple refnames.Peter Eisentraut
2008-11-14One more hack to see if we can get the cygwin machines building again.Tom Lane
2008-11-14Actually, instead of whining about how type internal might not safely storeTom Lane
2008-11-11Make psql report "SSL connection (unknown cipher)" when libpq has setMagnus Hagander
2008-11-11Add support for input and output of interval values formatted per ISO 8601;Tom Lane
2008-11-10Add a --locale switch to createdb, to ease the creation of databases withAlvaro Herrera
2008-11-09Replace pg_class.reltriggers with relhastriggers, which is just a boolean hintTom Lane
2008-11-09Add a new GUC variable called "IntervalStyle" that decouples interval outputTom Lane
2008-11-07Implement ALTER DATABASE SET TABLESPACE to move a whole database (or at leastTom Lane
2008-11-06Improve psql's \dC command to take a pattern parameter. Casts are shownTom Lane
2008-11-03Fix two error-recovery bugs in describeOneTableDetails(), and make the codeTom Lane
2008-10-31Add support for user-defined I/O conversion casts.Heikki Linnakangas
2008-10-31Message improvementPeter Eisentraut
2008-10-29Unicode escapes in strings and identifiersPeter Eisentraut
2008-10-04Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane
2008-09-30Fix misspelled commentTom Lane
2008-09-30Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas
2008-09-24Fix pg_dump bug in the database-level collation patch. "datcollate" andHeikki Linnakangas
2008-09-24Silence compiler warning caused by recent collation patch.Magnus Hagander
2008-09-24Make sure pg_control is opened in binary mode, to dealMagnus Hagander
2008-09-23Tighten the check in initdb and CREATE DATABASE that the chosen encodingHeikki Linnakangas
2008-09-23Make LC_COLLATE and LC_CTYPE database-level settings. Collation andHeikki Linnakangas
2008-09-15Avoid compiler warning about variable used before assigned.Peter Eisentraut
2008-09-08Make pg_dump --data-only try to order the table dumps so that foreign keys'Tom Lane
2008-09-08Create a separate grantable privilege for TRUNCATE, rather than having it beTom Lane
2008-09-06Adjust psql's new \ef command to present an empty CREATE FUNCTION templateTom Lane
2008-09-06Implement a psql command "\ef" to edit the definition of a function.Tom Lane
2008-09-05Add comment about why pg_dump doesn't dump the public schema comment.Bruce Momjian
2008-08-29Fixup pg_dumpall adding --lock-wait-timeout, to match pg_dump.Alvaro Herrera
2008-08-29Document that \t and \x are now settable.Alvaro Herrera
2008-08-16Fix pg_dump/pg_restore's ExecuteSqlCommand() to behave suitably if PQexecTom Lane
2008-08-16Fix a couple of places where psql might fail to report a suitable errorTom Lane
2008-08-16Fix version warning bug in recently applied adjustments to psql startup.Bruce Momjian
2008-08-05Move pgstat.tmp into a temporary directory under $PGDATA named pg_stat_tmp.Magnus Hagander
2008-07-30Flip the default typispreferred setting from true to false. This affectsTom Lane
2008-07-30Replace the hard-wired type knowledge in TypeCategory() and IsPreferredType()Tom Lane
2008-07-20Add a pg_dump option --lock-wait-timeout to allow failing the dump if unableTom Lane
2008-07-20Revert patch so .psqlrc can suppress startup banner:Bruce Momjian
2008-07-19Avoid substituting NAMEDATALEN, FLOAT4PASSBYVAL, and FLOAT8PASSBYVAL intoTom Lane
2008-07-18In psql, run .psqlrc _after_ printing warnings and banner.Bruce Momjian
2008-07-18Suppress compiler warning, and not incidentally make the code moreTom Lane
2008-07-18Implement SQL-spec RETURNS TABLE syntax for functions.Tom Lane
2008-07-16Add a "provariadic" column to pg_proc to eliminate the remarkably expensiveTom Lane
2008-07-16Support "variadic" functions, which can accept a variable number of argumentsTom Lane
2008-07-15Addendum: psql sequence value display patch was originally written byBruce Momjian
2008-07-15Have psql \d show the value of sequence columns.Bruce Momjian
2008-07-14Add comment about literal strings in our syntax not being translated inBruce Momjian
2008-07-14Add column storage type to psql \d+ display.Bruce Momjian
2008-07-14In psql, rename trans_* variables to translate_*, for clarity.Bruce Momjian