summaryrefslogtreecommitdiff
path: root/src/bin/psql
Commit message (Expand)AuthorAgeFilesLines
* Print combining characters (those reported as having zero width byTom Lane2006-12-271-20/+15
* Make HISTCONTROL=ignoredups work again (broken by misordering ofTom Lane2006-12-241-7/+7
* fix thinko in placement of TimeValStruct typedef in Windows case, as reported...Andrew Dunstan2006-12-181-3/+3
* enable \timing oputput for \copy commandsAndrew Dunstan2006-12-163-28/+47
* Translation updatesPeter Eisentraut2006-12-021-612/+791
* Fix psql's \copy command to ensure that it cycles libpq back to the idle stateTom Lane2006-11-241-1/+13
* Translation updatesPeter Eisentraut2006-11-245-1762/+2189
* Get rid of retail definitions of HAVE_STRDUP and HAVE_VSNPRINTF inTom Lane2006-11-212-2/+2
* Fix a memory leak in psql: we'd leak a few PGresult handles ifNeil Conway2006-11-081-1/+8
* Translations updatePeter Eisentraut2006-10-216-3090/+4354
* MSVC/BCC Win32 compiler fixes.Bruce Momjian2006-10-101-0/+7
* Move processNamePattern into dumputils.c in preparation for using it inTom Lane2006-10-091-260/+58
* Fix ancient oversight in psql's \d pattern processing code: when seeing twoTom Lane2006-10-071-10/+13
* Message style improvementsPeter Eisentraut2006-10-063-11/+11
* pgindent run for 8.2.Bruce Momjian2006-10-0416-375/+407
* Remove separate strdup.h header file; it's redundant with port.h.Tom Lane2006-09-271-4/+1
* Fix bugs in plpgsql and ecpg caused by assuming that isspace() would onlyTom Lane2006-09-221-3/+3
* Extend COPY to support COPY (SELECT ...) TO ...Tom Lane2006-08-301-1/+24
* Dept. of second thoughts: if query fails part way through, shut downTom Lane2006-08-291-4/+13
* Create a FETCH_COUNT parameter that causes psql to execute SELECT-likeTom Lane2006-08-295-483/+831
* Invent an assign-hook mechanism for psql variables similar to the oneTom Lane2006-08-2912-266/+407
* Make saveHistory work properly on OS X when HISTFILE is set to /dev/null.Tom Lane2006-08-271-2/+9
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-252-18/+74
* Cause psql to report both the returned data and the command status tagTom Lane2006-08-131-24/+42
* Make the psql line counter 64-bit so it can handle files > 4gig lines.Bruce Momjian2006-08-113-6/+6
* Suppress MSVC warnings about weak functions by usingBruce Momjian2006-08-091-5/+5
* Aggregate functions now support multiple input arguments. I also tookTom Lane2006-07-271-7/+12
* Mark a few functions as static or NOT_USED.Bruce Momjian2006-07-182-5/+5
* Improve psql's \df slash command to include the argument names and modesNeil Conway2006-07-171-3/+30
* Fix a few places where $Id$ and $Header$ CVS tags had crept into theTom Lane2006-07-161-1/+1
* Fix some missing inclusions identified with new pgcheckdefines tool.Tom Lane2006-07-152-10/+12
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-1414-45/+14
* Fix a passel of recently-committed violations of the rule 'thou shaltTom Lane2006-07-142-4/+2
* Fix memory leak introduced in the prior commit, detected by Tom Lane.Alvaro Herrera2006-06-301-1/+3
* Fix use-after-free error reported by Neil Conway.Alvaro Herrera2006-06-301-9/+11
* Move setup_cancel_handler() up near start of psql main(), where theTom Lane2006-06-211-6/+6
* Clean up psql variable code a little: eliminate unnecessary tests inTom Lane2006-06-211-21/+20
* Fix saveHistory() to not emit bogus complaint during psql exit when usingTom Lane2006-06-181-8/+23
* Clean up psql's control-C handling to avoid longjmp'ing out of randomTom Lane2006-06-1411-155/+351
* Code review for psql multiline history patch(es). Fix memory leak,Tom Lane2006-06-117-161/+132
* Prepare code to be built by MSVC:Bruce Momjian2006-06-074-22/+15
* For psql multi-line history, save backslash commands right away, ratherBruce Momjian2006-06-071-2/+2
* Avoid longjump/vfork warning about line_saved_in_history variable byBruce Momjian2006-06-051-3/+3
* Have psql history save \e editor contents to history before query isBruce Momjian2006-06-051-6/+8
* Fix psql so \r is separate in the history, rather than at the end ofBruce Momjian2006-06-041-2/+2
* Respond to Jeremy Drake's original gripe that \copy needs to recognizeTom Lane2006-06-013-78/+75
* Fix up hack to suppress escape_string_warning so that it actually worksTom Lane2006-06-014-43/+43
* Fix seriously broken patch for psql '' ... per its comment, emit() isTom Lane2006-05-311-4/+6
* Support '' for literal ' in psql single-quote strings, documentation update.Bruce Momjian2006-05-311-1/+4
* Escape processing patch:Bruce Momjian2006-05-314-26/+43