summaryrefslogtreecommitdiff
path: root/src/interfaces
Commit message (Collapse)AuthorAgeFilesLines
* Display only 9 subsecond digits instead of 10 for time values, forBruce Momjian2005-05-271-1/+1
| | | | | consistency and to prevent rounding for days < 30. Also round off all trailing zeros, rather than leaving an even number of digits.
* Back out part of patch that should be applied later.Bruce Momjian2005-05-271-1/+1
|
* Fix compile of entab to use stdarg.h. Clean up includes.Bruce Momjian2005-05-271-1/+1
| | | | Marko Kreen
* Use Abs() macro to replace ? :.Bruce Momjian2005-05-261-1/+1
|
* Back out:Bruce Momjian2005-05-261-1/+1
| | | | | | Display only 9 not 10 digits of precision for timestamp values when using non-integer timestamps. This prevents the display of rounding errors for common values like days < 32.
* Display only 9 not 10 digits of precision for timestamp values whenBruce Momjian2005-05-261-1/+1
| | | | | using non-integer timestamps. This prevents the display of rounding errors for common values like days < 32.
* Add parentheses to macros when args are used in computations. WithoutBruce Momjian2005-05-251-8/+8
| | | | them, the executation behavior could be unexpected.
* Remove more extraneous parentheses in date/time functions.Bruce Momjian2005-05-245-256/+237
|
* More macro cleanups for date/time.Bruce Momjian2005-05-235-40/+48
|
* Add datetime macros for constants, for clarity:Bruce Momjian2005-05-233-7/+7
| | | | | | | | #define SECS_PER_DAY 86400 #define USECS_PER_DAY INT64CONST(86400000000) #define USECS_PER_HOUR INT64CONST(3600000000) #define USECS_PER_MINUTE INT64CONST(60000000) #define USECS_PER_SEC INT64CONST(1000000)
* Code cleanup: in C89, there is no point casting the first argument toNeil Conway2005-05-111-4/+4
| | | | | | memset() or MemSet() to a char *. For one, memset()'s first argument is a void *, and further void * can be implicitly coerced to/from any other pointer type.
* Add comments on WSAStartup usage.Bruce Momjian2005-05-051-2/+7
|
* Add WSACleanup() for Win32 socket cleanup.Bruce Momjian2005-05-051-1/+5
| | | | Jason Erickson
* Fix BCC to not define compiler location.Bruce Momjian2005-04-301-1/+1
|
* Improve cleanup from win32 client-only build.Bruce Momjian2005-04-292-3/+3
|
* Backpatch BCC compile changes to 8.0.X for psql.Bruce Momjian2005-04-295-111/+94
|
* Added patch by Philip Yarra <philip.yarra@internode.on.net> for a bug in ↵Michael Meskes2005-04-142-7/+29
| | | | thread support.
* Kerberos fixes from Magnus Hagander --- in theory Kerberos 5 authTom Lane2005-03-253-13/+16
| | | | | | should work on Windows now. Also, rename set_noblock to pg_set_noblock; since it is included in libpq, the former name polluted application namespace.
* Added patch by Christof Petig <christof@petig-baender.de> to work around gcc ↵Michael Meskes2005-03-183-11/+34
| | | | bug on powerpc and amd64.
* Bump minor version numbers for 8.1 compared to 8.0.Bruce Momjian2005-03-145-10/+10
|
* Add fprintf() custom version to libpgport.Bruce Momjian2005-03-115-15/+15
| | | | | | | Document use of macros for pg_printf functions. Bump major versions of all interfaces to handle movement of get_progname from libpq to libpgport in 8.0, and probably other libpgport changes in 8.1.
* Replace an instance of $Id$ and an instance of $Header$ with $PostgreSQL$Neil Conway2005-03-071-1/+1
|
* Properly implement "Response files" for bcc. Add URL's to describe theBruce Momjian2005-03-072-23/+27
| | | | feature for Win32 and bcc.
* Because the change to gettext. Needs a bunch of new includes. PatchBruce Momjian2005-02-271-2/+3
| | | | | | follows: Magnus Hagander
* Tab indent all actions in bcc32.mak, and do it on win32.mak too forBruce Momjian2005-02-272-57/+57
| | | | consistency. Backpatch only bcc32.mak to 8.0.X.
* Add linking from /port to bcc makefile.Bruce Momjian2005-02-251-0/+51
|
* Use _() macro consistently rather than gettext(). Add translationBruce Momjian2005-02-224-28/+28
| | | | macros around strings that were missing them.
* Try to get Borland CC to compile.Bruce Momjian2005-02-212-42/+46
| | | | Backpatch to 8.0.X which doesn't work right now.
* Fixed changelog entry to list correct bug reporter.Michael Meskes2005-02-101-1/+2
|
* Fixed more parsing bugs in other CREATE statements as pointed out by TANIDAMichael Meskes2005-02-102-3/+8
| | | | Yutaka <tanida@sra.co.jp>.
* Fixed bug in parsing of CREATE AS statement.Michael Meskes2005-02-092-2/+6
|
* Fixed bug in parsing of #line statement in declare section.Michael Meskes2005-02-023-5/+11
|
* Use SHGetFolderPath instead of SHGetSpecialFolderPath to find theTom Lane2005-01-264-7/+12
| | | | APPDATA directory on Windows. Magnus Hagander
* Fixed segfault due to freeing a struct definition twice if it was a named ↵Michael Meskes2005-01-253-6/+11
| | | | struct used in a typedef.
* Update version stamps for 8.1 as listed in RELEASE_CHANGES.Bruce Momjian2005-01-186-14/+14
|
* Translation updatesPeter Eisentraut2005-01-171-68/+69
|
* Translation updatesPeter Eisentraut2005-01-142-2/+626
|
* Change Win32 client configuration files from *.txt to *.conf.Bruce Momjian2005-01-141-2/+2
|
* Translation updatesPeter Eisentraut2005-01-131-62/+63
|
* Add conditional inclusion of <com_err.h> to support old 'heimdal'Tom Lane2005-01-121-1/+5
| | | | version of Kerberos. Per report from Reinhard Max.
* interval_out failed to mention 'ago' for negative intervals in SQL andTom Lane2005-01-111-1/+1
| | | | GERMAN datestyles. Ancient bug reported by Terry Lee Tucker.
* Fixed segfault in adjust_informix due to missing varchar type.Michael Meskes2005-01-102-3/+12
|
* Comment out check for substitution of private key file on Windows,Tom Lane2005-01-101-3/+7
| | | | since st_ino can't be trusted on that platform. Per report from T.J.
* Un-break MSVC build, per Andrew Dunstan.Tom Lane2005-01-102-2/+9
|
* Translation updatesPeter Eisentraut2005-01-091-75/+70
|
* Consistently use geteuid() not getuid(); there were a few places deviatingTom Lane2005-01-081-5/+2
| | | | from our long-established standard.
* Minor mop-up for Windows home-directory stuff, per Magnus.Tom Lane2005-01-063-4/+7
|
* Instead of a bare recv() to read the server's response to an SSLTom Lane2005-01-061-15/+21
| | | | | | | request packet, use pqReadData(). This has the same effect since conn->ssl isn't set yet and we aren't expecting more than one byte. The advantage is that we will correctly detect loss-of-connection instead of going into an infinite loop. Per report from Hannu Krosing.
* Adjust lookup of client-side profile files (.pgpass and so on) as perTom Lane2005-01-062-31/+40
| | | | | | discussion on pgsql-hackers-win32 list. Documentation still needs to be tweaked --- I'm not sure how to refer to the APPDATA folder in user documentation.
* Translation updatesDennis Bjorklund2005-01-061-68/+67
|