summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1998-10-09Adjustments for standalone and integrated ODBC.Thomas G. Lockhart
1998-10-09More bsdi 4.0 cleanups for shared libraries.Bruce Momjian
1998-10-09More bsdi 4.0 fixes.Bruce Momjian
1998-10-09Cleanup of distclean.Bruce Momjian
1998-10-09Fix for BSDI shared libraries.Bruce Momjian
1998-10-09AutoconfBruce Momjian
1998-10-09Cleanup of pl files.Bruce Momjian
1998-10-08Clean up minor gcc warning about lack of reset_r_plans prototype.Tom Lane
1998-10-08I have had a few problems with the PL stuff recently committed. TheBruce Momjian
following patches fix the problems (i.e., all regression tests pass) in what I hope to be a platform-independent fashion. The accomplish the following: Brook Milligan
1998-10-08Do not enable TCL_ARRAYS feature by default, because itTom Lane
is wrong and dangerous unless you are using contrib/string. We really need a thorough look at the issue of making the backend and the FE/BE protocols completely 8-bit-clean for string data, but that's a task for some future release.
1998-10-08Update to pgaccess 0.90.Bruce Momjian
1998-10-08No need compile command/version.c anymore.Bruce Momjian
1998-10-08Make functions static or ifdef NOT_USED. Prevent pg_version creation.Bruce Momjian
1998-10-08libpgtcl.sgml still needs work, but at least there areTom Lane
fewer errors than there were.
1998-10-08Fix for INET type addition.Bruce Momjian
1998-10-08Grammar, my boy, grammar :-(Tom Lane
1998-10-08I'm too short of time to make these man pages look like theTom Lane
newly-updated SGML reference pages, so I just inserted a comment that they are obsolete. If you want to transcribe the newer info into these pages, be my guest.
1998-10-08I continue my quest to eliminate documentation that claimsTom Lane
a listen/notify condition name is a class or table name, 'cause it ain't.
1998-10-08Add changelog.Bruce Momjian
1998-10-08remove unused file.Bruce Momjian
1998-10-08Just a quick patch. This makes the JDBC driver thread safe, which is anBruce Momjian
important step towards making the driver compliant, and means that for some Java applications and servlets, only a single database connection is needed, so in a sence this is a nice little show stopper for 6.4 (and should still be backward compatible to 6.3.2). Peter
1998-10-08Cleanup for snprintf for long long's.Bruce Momjian
1998-10-08Link unlisten.sgml into what I hope are the right places.Tom Lane
1998-10-08I agree. I think, though, that the best argument presented in theBruce Momjian
debate was from Paul Vixie, who wanted INET to be the name covering both IPV4 and IPV6. The following kit makes the needed changes: Tom Ivar Helbekkmo
1998-10-08And some UNLISTEN doco too!Tom Lane
1998-10-08LISTEN/NOTIFY doc improvements.Tom Lane
1998-10-08Hello!Bruce Momjian
Here are two new patches for the Win32 support. 1) The patch based on the one from Hiroshi Inoue [Inoue@tpf.co.jp], to load Winsock.dll from libpq.dll. 2) A patch for psql.c to remove the call to WSAStartup(), since it is not required when it's done in libpq.dll. I'm still looking for the possibility of having a crypt() function in libpq.dll too, the same way getopt was included. Any chance of getting this before 6.4, or should we wait for the next one? //Magnus
1998-10-07vacuum cleanupsBruce Momjian
1998-10-07Fix snprintf.c for machines that don't have long long, like some Irix.Bruce Momjian
1998-10-07Use the $(LN_S) substitution for "ln -s" since configure tests for it.Thomas G. Lockhart
1998-10-07Clean up for configuration from the Postgres main configure script.Thomas G. Lockhart
Use @top-srcdir@ to find the right Makefile.global and use ODBCSRCDIR to point to this local directory. Move non-platform-specific stuff to outside the if clauses. Still need to move all platform-specific stuff to the templates.
1998-10-07Add conditional compilation of the ODBC directory.Thomas G. Lockhart
Requires --with-odbc specified in the standalone configure.
1998-10-07Add a few items to support an integrated build of the ODBC interface.Thomas G. Lockhart
1998-10-07Separate out the lextest so that it is run by "make" and "make install".Thomas G. Lockhart
Before, "make install" did not run the lextest. Fix up the ODBC make from this main configure. Include configure test for "ln -s" in Makefile.global.in. Was always in configure, just not carried through to here for use.
1998-10-07make lock variable only used with fcntlBruce Momjian
1998-10-07Update pg_dump sgml and manuals to remove rule restriction.Bruce Momjian
1998-10-06 Playing around with pg_dump for a while resulted in someBruce Momjian
fixes, enhancements and some found bugs not yet fixed. After all I was able to get useful results when dumping/reloading the regression database. Jan
1998-10-06Took it on myself to change libpq's sharedlib version number fromTom Lane
1.1 to 2.0 for this release. The other frontend shlibs need version number bumps too, but I think a minor version number change will do for them.
1998-10-06If we're going to offer a default definition of PQmblen,Tom Lane
it probably ought to actually work.
1998-10-06Re-apply fix stomped on by someone else's patch. Tsk, tsk.Tom Lane
1998-10-06Update source code to Byron's v6.30.0250 sources plus minor cleanupThomas G. Lockhart
to get rid of unused variables. Get clean compile on Linux (Thomas and Gerald). Implement autoconf/configure for standalone builds and use the existing autoconf/configure system when in the Postgres source tree. Code tests and functions with ApplixWare-4.4.1beta on a Linux box. Changes should be backward compatible with WIN32 but still needs testing.
1998-10-06Install man pages from here now. "make install" will do that along withThomas G. Lockhart
the html/ps material...
1998-10-06Try to configure interfaces/odbc using the --with-odbc switch.Thomas G. Lockhart
Suppress installing man pages from here; do it from the doc/Makefile now.
1998-10-06Forgot to initialize double quote option to be enabled.Thomas G. Lockhart
1998-10-06Add mention of the new "suppress double quotes" command line option "-n".Thomas G. Lockhart
1998-10-06Fix for double free from Tatsuo IshiiBruce Momjian
1998-10-06> > There is a bug in check_foreign_key of refint.c which is bundled withBruce Momjian
> > the standard distribution. It occurs when a trigger calling this > > function recursively fires another trigger which calls the same > > function. The calling check_foreign_key loses its plan informantion and > > when it tries to use it the backend closes its channel. You can check it > > with the sql script I am attaching below. > > The solution to this is to do a find_plan again before executing it at > > line 483 of refint.c. > > Therefore two more lines should be added before line 483: Anand Surelia
1998-10-06Hi allBruce Momjian
Is it too late to add a feature to pg_dump for 6.4?? I just spent most of the day learning pg_dump and modifing it so it would dump views also. This is the first time I have ever contributed any code changes, so I'm not sure of how to submit it. The diff's and a readme as a tgz file are attached. Thanks Terry Mackintosh <terry@terrym.com> http://www.terrym.com
1998-10-06Here are the patches against the current source tree. I have run theBruce Momjian
regression test on a FreeBSD box with both non-MULTIBYTE and MULTIBYTE-enabled, and confirmed that the results are same. However I do not tested on PCs(I don't have access to win). Please let me know if the patches break anything on PCs. Also please note that the patch for varchar.c is a fix for a nasty bug of char(n) types that I introduced and I believe at least this should be applied. Tatsuo Ishii
1998-10-06Substantial rewrite of async.c to avoid problems with non-reentrant stdioTom Lane
and possibly other problems. Minor changes in xact.c and postgres.c's main loop to support new handling of async NOTIFY.