Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-04-30 | Allow timezone to compile under Unix by blocking 'timezone' conflict with | Bruce Momjian | |
system headers. Allow system to find timezone database by pasing pkglibdir into the binary via a define. | |||
2004-04-30 | Convert DOS newlines to Unix newlines. | Bruce Momjian | |
2004-04-30 | Integrate timezone library to be called only from Win32. | Bruce Momjian | |
Timezone code backend integration done by Magnus Hagander. | |||
2004-04-30 | Enable use of our own timezone library for Win32. | Bruce Momjian | |
2004-04-30 | Minor adjustments to enable public-domain timezone library to be called | Bruce Momjian | |
from our code. | |||
2004-04-30 | Timezone library changes to map into our backend code. | Bruce Momjian | |
2004-04-30 | Add Olson's public domain timezone library to src/timezone. | Bruce Momjian | |
2004-04-29 | Synced parser and keyword list. | Michael Meskes | |
2004-04-29 | Minor copy-editing. | Tom Lane | |
2004-04-28 | Fix typo: | Bruce Momjian | |
< columns and indexes with many duplicate keys | |||
2004-04-27 | Improve thread failure wording. | Bruce Momjian | |
2004-04-27 | Enable thread testing outside the source tree. | Bruce Momjian | |
2004-04-27 | Do thread testing from configure in a much cleaner fashion. | Bruce Momjian | |
2004-04-27 | Add comments. | Bruce Momjian | |
2004-04-27 | Use mktemp for temporary file names, per suggestion from Peter. | Bruce Momjian | |
2004-04-27 | Move postgres.h to the top of the C file. | Bruce Momjian | |
2004-04-26 | Fix vpath for thread test. | Bruce Momjian | |
2004-04-26 | Fix subdir for thread test program. | Bruce Momjian | |
2004-04-26 | Add $(X) for cross-compiling. Seems the mingw compiler running on | Bruce Momjian | |
FreeBSD doesn't add .EXE to links. Michiel Ephraim | |||
2004-04-26 | Please find attached a small patch against current cvs head, so that | Bruce Momjian | |
'information_schema' is considered a system schema by various pg_stat*_*_{tables,sequences} views. Fabien COELHO | |||
2004-04-26 | Please find a attached a small patch that adds accessor functions | Bruce Momjian | |
for "aclitem" so that it is not an opaque datatype. I needed these functions to browse aclitems from user land. I can load them when necessary, but it seems to me that these accessors for a backend type belong to the backend, so I submit them. Fabien Coelho | |||
2004-04-26 | More cleanup of thread tests. | Bruce Momjian | |
2004-04-26 | Translation updates | Dennis Bjorklund | |
2004-04-26 | Unconditionally define: | Bruce Momjian | |
-D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS for all ports. It can't hurt if they are not supported, but it makes our job easier for porting. Should fix Darwin compile and other platforms without mucking with the thread detection code. | |||
2004-04-26 | Clean tools/thread on make clean/distclean. | Bruce Momjian | |
2004-04-26 | Exit with non-zero error on thread test failures. | Bruce Momjian | |
2004-04-26 | More thread error improvments. | Bruce Momjian | |
2004-04-26 | More thread error message improvments. | Bruce Momjian | |
2004-04-26 | More thread error improvements. | Bruce Momjian | |
2004-04-26 | Improve thread error message. | Bruce Momjian | |
2004-04-26 | Improve error message for platform thread failure. | Bruce Momjian | |
2004-04-25 | Tiny assorted fixes: correct a typo in a comment in vacuumlazy.c, remove | Neil Conway | |
some unused #include directives from bufmgr.c, and clarify comments in bufmgr.h and buf.h | |||
2004-04-25 | More thread cleanups. | Bruce Momjian | |
2004-04-25 | Add mention to check config.log if thread test failure. | Bruce Momjian | |
2004-04-25 | Fix typo on thread lib name. | Bruce Momjian | |
2004-04-25 | Make thread flags CFLAGS, not CPPFLAGS. | Bruce Momjian | |
2004-04-25 | No need to use our standard libs for the thread test --- they might not | Bruce Momjian | |
be compiled yet. | |||
2004-04-25 | Remove the last traces of Joe Hellerstein's "xfunc" optimization. Patch | Neil Conway | |
from Alvaro Herrera. Also, removed lispsort.c, since it is no longer used. | |||
2004-04-24 | Fix typo in libpq docs. | Neil Conway | |
2004-04-24 | Document that PQoidValue(), PQcmdTuples(), and PQoidStatus() now work | Neil Conway | |
when the command that generated the PGresult was an EXECUTE of an appropriate prepared statement. | |||
2004-04-24 | Ensure getaddrinfo_all returns null result on failure. | Tom Lane | |
2004-04-24 | Check for gmake, then make, when doing thread test. | Bruce Momjian | |
2004-04-24 | Add mention to run thread test program if user is experiencing problems | Bruce Momjian | |
with threaded applications. | |||
2004-04-23 | Hook thread_test program run at the end of configure run. | Bruce Momjian | |
Add test for cross-compiles that they have to run the thread_test program on the target machine. | |||
2004-04-23 | Report error if thread-test is run without having threading enabled in | Bruce Momjian | |
configure. | |||
2004-04-23 | Improve thread test program. Test only functions that need testing. | Bruce Momjian | |
2004-04-23 | Add ceiling() as an alias for ceil(), and power() as an alias for pow(). | Neil Conway | |
Regression tests and documentation have both been updated. SQL2003 requires that both ceiling() and ceil() be present, so I have documented both spellings. SQL2003 doesn't mention pow() as far as I can see, so I decided to replace pow() with power() in the documentation: there is little reason to encourage the continued usage of a function that isn't compliant with the standard, given a standard-compliant alternative. RELEASE NOTES: should state that pow() is considered deprecated (although I don't see the need to ever remove it.) | |||
2004-04-23 | Add new auto-detection of thread flags. | Bruce Momjian | |
Allow additional thread flags to be added via port templates. Change thread flag names to PTHREAD_CFLAGS and PTHREAD_LIBS to match new configure script. | |||
2004-04-23 | Fixed memory misusage in variable handling. | Michael Meskes | |
2004-04-22 | Simplify thread test program. | Bruce Momjian | |