- 25 Oct, 2000 7 commits
-
-
Michael Meskes authored
-
Tom Lane authored
support is not present. This allows a non-MB server to load a pg_dumpall script produced by an MB-enabled server, so long as only ASCII encoding was used.
-
Peter Eisentraut authored
the -l options. (This was not the case when using the OpenSSL or Kerberos options.) Also make sure that shared library links get to see all the -L options. Get Kerberos 5 support to compile on Redhat 7.0. Add OpenSSL and -lsocket (if used/found) to libpq link.
-
Thomas G. Lockhart authored
I modified the current ODBC driver for * referential integrity error reporting, * SELECT in transactions and * disabling autocommit. I tested these changes with Borland C++ Builder -> ODBCExpress -> WinODBC driver (DLL) -> Postgres 7.0beta1 and Borland C++ Builder -> BDE -> WinODBC driver (DLL) -> Postgres 7.0beta1. The patch is based on snapshot of 22th April (I don't think that someone has modified it since that: Byron hasn't gave any sign of living for about a month and I didn't find any comments about the ODBC driver on the list).
-
Philip Warner authored
Dump template db in dumpall
-
Michael Meskes authored
-
Vadim B. Mikheev authored
-
- 24 Oct, 2000 24 commits
-
-
Tom Lane authored
for input, not just before.
-
Tom Lane authored
Just like queries, doing nothing is better than possibly getting weird error messages. Also, improve comments.
-
Peter Eisentraut authored
operator to '#' for consistency. Parser still needs work.
-
Tom Lane authored
'AbortTransaction and not in in-progress state' when client disconnects just after an error. Notice seems pretty harmless, so I'm not going to worry about back-patching this into 7.0.* ...
-
Tom Lane authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Peter Eisentraut authored
source). Adjust resultmap accordingly and fix some other regexps.
-
Tom Lane authored
definition later...)
-
Tom Lane authored
-
Peter Eisentraut authored
messed up and we end up with the comments from included files in the output "configure".
-
Tom Lane authored
latest fixes make it safe or not, but we won't find out if no one builds it, eh?
-
Tom Lane authored
Devel::PPPort instead. Thanks to Gilles Darold for doing the legwork.
-
Tom Lane authored
-
Philip Warner authored
Fix for endian bug in TAR output Nicer error messages in pg_dump
-
Vadim B. Mikheev authored
-
Tom Lane authored
once per distinct LO, not once per pg_largeobject tuple.
-
Tom Lane authored
as full as possible, seems better to use a tuple size around BLCKSZ/4 so that less space is wasted when a LO tuple is updated. Also, this lets us use a logical page size that's an exact power of two, avoiding partial-page writes when client is sending us stuff in power-of-2 buffer chunks.
-
Tom Lane authored
-
Tom Lane authored
This used to make some sense under the old implementation, but now an open LO is pretty darn cheap, so why restrict it?
-
Bruce Momjian authored
-
Tom Lane authored
kibitzing from Tom Lane. Large objects are now all stored in a single system relation "pg_largeobject" --- no more xinv or xinx files, no more relkind 'l'. This should offer substantial performance improvement for large numbers of LOs, since there won't be directory bloat anymore. It'll also fix problems like running out of locktable space when you access thousands of LOs in one transaction. Also clean up cruft in read/write routines. LOs with "holes" in them (never-written byte ranges) now work just like Unix files with holes do: a hole reads as zeroes but doesn't occupy storage space. INITDB forced!
-
Tom Lane authored
-
Tom Lane authored
testlo.c, except it's even skimpier on error checking :-(
-
- 23 Oct, 2000 7 commits
-
-
Tom Lane authored
source, due to addition of header overhead), store it as plain data rather than pseudo-compressed data. This saves a few microseconds when reading it out, but much more importantly guarantees that the toaster won't actually expand tuples that contain incompressible data. That's essential to avoid 'Tuple too big' failures with large objects.
-
Bruce Momjian authored
-
Peter Eisentraut authored
particular, allow linking with arbitrary commands rather than only $(AR) or $(LD), and treat C++ without hacks. Add option to disable shared libraries. This takes the place of the BSD_SHLIB variable. The regression test driver ignores the plpgsql test if there are no shared libraries available.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Vadim B. Mikheev authored
from bufmgr - it would be nice to have separate hash in smgr for node <--> fd mappings, but for the moment it's easy to add new hash to relcache. Fixed small bug in xlog.c:ReadRecord.
-
Tom Lane authored
-
- 22 Oct, 2000 2 commits
-
-
Tom Lane authored
as well allow DROP multiple INDEX, RULE, TYPE as well. Add missing CommandCounterIncrement to DROP loop, which could cause trouble otherwise with multiple DROP of items affecting same catalog entries. Try to bring a little consistency to various error messages using 'does not exist', 'nonexistent', etc --- I standardized on 'does not exist' since that's what the vast majority of the existing uses seem to be.
-
Tom Lane authored
-