summaryrefslogtreecommitdiff
path: root/src/bin
AgeCommit message (Expand)Author
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
2008-07-12More replacements of binary compatible to binary coercible.Peter Eisentraut
2008-07-03Don't print the name of the database in psql \z.Peter Eisentraut
2008-07-03Fix psql's \d and allied commands to work with all server versions back to 7.4.Tom Lane
2008-07-01Move volatility, language, etc. modifiers before function body in the pg_dumpHeikki Linnakangas
2008-07-01Issue psql connection warnings on connection start and via \c, perBruce Momjian
2008-06-26Fix pg_ctl bug where detection of binary location from postmaster.optsBruce Momjian
2008-06-26Simplify 'pg_ctl restart' detection of first argument inBruce Momjian
2008-06-26Fix 'pg_ctl restart' to preserve command-line arguments.Bruce Momjian
2008-06-26Use SYSTEMQUOTE as concatentation to strings, rather than %s printfBruce Momjian
2008-06-26Remove use of postmaster.opts.default by pg_ctl.Bruce Momjian
2008-06-11Update "help" output to reflect that \timing now takes an optional on/offHeikki Linnakangas
2008-06-11Add optional on/off argument to \timing.Heikki Linnakangas
2008-06-10Editorialization for the text emitted by the "help" psql command.Neil Conway
2008-06-02Fix initdb to reject a relative path for -X (--xlogdir) argument. ThisTom Lane
2008-05-21Fix function headers not matching prototype in header file, perMagnus Hagander