summaryrefslogtreecommitdiff
path: root/src/bin
AgeCommit message (Expand)Author
2005-09-11Fix some corner-case bugs in _sendSQLLine's parsing of SQL commandsTom Lane
2005-09-11Avoid changing stdin/stdout to binary mode on Windows unless that isTom Lane
2005-09-05Implement a preliminary 'template' facility for procedural languages,Tom Lane
2005-09-05Clean up version comparison/display code, per gripe from Michael Fuhr.Tom Lane
2005-09-05Conditionally output the server version number in psql if it doesn'tBruce Momjian
2005-08-28Fix initdb quoting for Win32 paths in final examples, per Dave Page.Bruce Momjian
2005-08-28dumpUserConfig failed (in a pretty harmless way, but failed nonetheless)Tom Lane
2005-08-27Windows needs WSAStartup() before getaddrinfo() will work. Andrew DunstanTom Lane
2005-08-25Original assumption that our own getaddrinfo routine would never supportTom Lane
2005-08-23Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump toTom Lane
2005-08-22Cause ALTER INDEX OWNER to generate a warning and do nothing, rather thanTom Lane
2005-08-22Use an initdb-time test to see if the local version of getaddrinfo()Tom Lane
2005-08-15Clean up recent patch for PL handler functions in pg_catalog: the patchTom Lane
2005-08-15Make createlang and droplang proof against weird search_path settingsTom Lane
2005-08-15Clean up some stray remaining references to pg_shadow, pg_user, pg_group.Tom Lane
2005-08-15Change pg_dump to use pg_roles instead of pg_user on 8.1 and up,Tom Lane
2005-08-14Update the createuser utility for the ROLEs world. Alvaro HerreraTom Lane
2005-08-14Fix psql's \d commands to use pg_roles instead of pg_user, so thatTom Lane
2005-08-14Fix up tab completion for ROLEs and add some more completion logic forTom Lane
2005-08-12Solve the problem of OID collisions by probing for duplicate OIDsTom Lane
2005-08-09Extend pg_config to be able to report the build-time values of CC,Tom Lane
2005-08-02Add ERROR_NO_MORE_FILES workaround to check_data_dir(). This may orTom Lane
2005-07-31Add per-user and per-database connection limit options.Tom Lane
2005-07-30Add GUC variables to control keep-alive times for idle, interval, andBruce Momjian
2005-07-29Move reindexdb from /contrib to /bin.Bruce Momjian
2005-07-28Add tab completion syntax for PREPARE 2-phase commit syntax.Bruce Momjian
2005-07-27Fix a few macro definitions to ensure that unary minus is enclosed inNeil Conway
2005-07-27Avoid crashing pg_dump if we can't connect to the database server, andNeil Conway
2005-07-25Add username for psql password prompt, if the username was specified.Bruce Momjian
2005-07-25Awhile back we replaced all uses of strcasecmp and strncasecmp withTom Lane
2005-07-23Simple constraint exclusion. For now, only child tables of inheritanceTom Lane
2005-07-18\pset numericsep -> numericlocale.Bruce Momjian
2005-07-18Fix len so decimal length is only added when a period appears in the output.Bruce Momjian
2005-07-18Avoid use of E'', and thereby creating an unnecessary version-dependency,Tom Lane
2005-07-18Avoid need for E'' construct by using regexp instead of LIKE. MoreTom Lane
2005-07-18Fix numiericsep length computations.Bruce Momjian
2005-07-18Adjust psql describe queries so that any pg_foo_is_visible() conditionTom Lane
2005-07-14Enable multi-byte thousands_sep and decimal_point for numericsep.Bruce Momjian
2005-07-14Make better thousands_sep default based on decimal marker value.Bruce Momjian
2005-07-14Change numericsep to a boolean, and make it locale-aware.Bruce Momjian
2005-07-14Add numeric separator support for latex and troff output methods.Bruce Momjian
2005-07-14barebones variable name -> tuples_only, for consistency.Bruce Momjian
2005-07-14Fix malloc length for new numeric separator patch.Bruce Momjian
2005-07-10Rename xmalloc to pg_malloc for consistency with psql usage.Bruce Momjian
2005-07-10Reverse pg_malloc patch because psql/print.c is used in scripts filesBruce Momjian
2005-07-10Use failure-safe pg_malloc consistently in psql/print.c.Bruce Momjian
2005-07-10Add --encoding to pg_dump.Bruce Momjian
2005-07-10This patch implements putting language handlers for the optional PLsBruce Momjian
2005-07-10Add psql \pset numericsep to allow output numbers like 100,000.0 orBruce Momjian
2005-07-08Try connecting to both postgres and template1 databases to do the initialTom Lane