summaryrefslogtreecommitdiff
path: root/src/backend/libpq/pqformat.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove a bunch of unused configure tests, in particular cases wherePeter Eisentraut2000-07-121-4/+2
| | | | | | | | | | * the result is not recorded anywhere * the result is not used anywhere * the result is only used in some places, whereas others have been getting away with it * the result is used improperly Also make command line options handling a little better (e.g., --disable-locale, while redundant, should really still *dis*able).
* Seems we need <errno.h> to be included explicitly now...Tom Lane2000-07-081-5/+7
|
* Ye-old pgindent run. Same 4-space tabs.Bruce Momjian2000-04-121-2/+7
|
* Add:Bruce Momjian2000-01-261-2/+3
| | | | | | * Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
* Look Ma, no MAX_PARSE_BUFFER! (At least not in the backend.Tom Lane1999-10-231-2/+2
| | | | pg_dump and interfaces/odbc still need some work.)
* cygwin doesn't have an endian.h, but defines BYTE_ORDER in sys/param.hMarc G. Fournier1999-09-121-1/+4
|
* Eliminate query length limitation imposed by pg_client_to_serverTom Lane1999-09-111-18/+23
| | | | | and pg_server_to_client. Eliminate copy.c's restriction on the length of a single attribute.
* Commit the bulk of Mike Ansley's long-query changes in theTom Lane1999-08-311-18/+11
| | | | backend. Still much left to do.
* Move some system includes into c.h, and remove duplicates.Bruce Momjian1999-07-171-2/+2
|
* Final cleanup.Bruce Momjian1999-07-161-2/+4
|
* Remove unused #includes in *.c files.Bruce Momjian1999-07-151-3/+1
|
* pgindent run over code.Bruce Momjian1999-05-251-18/+28
|
* Still had a few MULTIBYTE problems when client encoding wasTom Lane1999-04-251-2/+31
| | | | different from database's ...
* My first cut at libpq revision didn't handle MULTIBYTE correctly,Tom Lane1999-04-251-46/+42
| | | | but I think it's OK now...
* Revise backend libpq interfaces so that messages to the frontendTom Lane1999-04-251-0/+293
can be generated in a buffer and then sent to the frontend in a single libpq call. This solves problems with NOTICE and ERROR messages generated in the middle of a data message or COPY OUT operation.