- 22 Oct, 2000 13 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
-
Philip Warner authored
-
Peter Eisentraut authored
* Makefile: Add more standard targets. Improve shell redirection in GNU make detection. * src/backend/access/transam/rmgr.c: Fix incorrect(?) C. * src/backend/libpq/pqcomm.c (StreamConnection): Work around accept() bug. * src/include/port/unixware.h: ...with help from here. * src/backend/nodes/print.c (plannode_type): Remove some "break"s after "return"s. * src/backend/tcop/dest.c (DestToFunction): ditto. * src/backend/nodes/readfuncs.c: Add proper prototypes. * src/backend/utils/adt/numutils.c (pg_atoi): Cope specially with strtol() setting EINVAL. This saves us from creating an extra set of regression test output for the affected systems. * src/include/storage/s_lock.h (tas): Correct prototype. * src/interfaces/libpq/fe-connect.c (parseServiceInfo): Don't use variable as dimension in array definition. * src/makefiles/Makefile.unixware: Add support for GCC. * src/template/unixware: same here * src/test/regress/expected/abstime-solaris-1947.out: Adjust whitespace. * src/test/regress/expected/horology-solaris-1947.out: Part of this file was evidently missing. * src/test/regress/pg_regress.sh: Fix shell. mkdir -p returns non-zero if the directory exists. * src/test/regress/resultmap: Add entries for Unixware.
-
Tom Lane authored
and DropBuffers. Formerly we cleared the flag for each buffer currently belonging to the target rel or database, but that's completely wrong! Must look at BufferTagLastDirtied to see whether the BufferDirtiedByMe flag is relevant to target rel or not; this is *independent* of the current contents of the buffer. Vadim spotted this problem, but his fix was only partially correct...
-
Tom Lane authored
and destination of a tuple lie on the same page. (Previously fixed in REL7_0 branch, now apply to current.)
-
Tom Lane authored
-
Tom Lane authored
-
Philip Warner authored
-
Philip Warner authored
This field stores the last allocated OID after the database was created. Used by pg_dump in deciding what is user-defined vs. system-defined.
-
Michael Meskes authored
-
Bruce Momjian authored
> Regression tests opr_sanity and sanity_check are now failing. Um, Bruce, I've said several times that I didn't think Perchine's large object changes should be applied until someone had actually reviewed them.
-
Bruce Momjian authored
-
- 21 Oct, 2000 8 commits
-
-
Peter Eisentraut authored
Makefile.port, since they are of no use to configure and much of the library magic happens in Makefile.port anyway. Use __alpha, not __alpha__, since the former is universally available. Remove -DNOFIXADE from the compile command line and put it in the port include file.
-
Bruce Momjian authored
Patrick Welche
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Bruce Momjian authored
I tested it restoring my database with > 100000 BLOBS, and dumping it out. But unfortunatly I can not restore it back due to problems in pg_dump. -- Sincerely Yours, Denis Perchine
-
Bruce Momjian authored
src/template/unixware: Larry Rosenman
-
Vadim B. Mikheev authored
-
Peter Eisentraut authored
-
- 20 Oct, 2000 10 commits
-
-
Peter Eisentraut authored
flags for Solaris. The test itself is straight from libtool.
-
Peter Eisentraut authored
source directory. This involves mostly makefiles using $(srcdir) when they might have used ".". (Regression tests don't work with this, yet.) Sort out usage of CPPFLAGS, CFLAGS (and CXXFLAGS). Add "override" keyword in most places, to preserve necessary flags even when the user overrode the flags.
-
Thomas G. Lockhart authored
Thanks to Henry "He Weiping (Laser Henry)" <laser@zhengmai.com.cn> for catching this.
-
Thomas G. Lockhart authored
Remove copy/paste redundant extra section with slight merge of content.
-
Thomas G. Lockhart authored
time zones with embedded numerals (parsing to a meaninless "ZP 4" instead). Support "SAT" as an Australian time zone if USE_AUSTRALIAN_RULES is defined. Fix units in exposition on Julian calendar (from Lazer Henry I think...)
-
Thomas G. Lockhart authored
Remove lots of extraneous trailing ^Ms from pg_restore.sgml.
-
Vadim B. Mikheev authored
(without PageManagetSetMode -:)) Safe shuffle mode behaviour retained.
-
Vadim B. Mikheev authored
-
Tom Lane authored
anywhere else that Makefile.shlib needs to modify CFLAGS to produce valid code for a shared library. I'm not real clear on *why* the use of override causes make to ignore the later attempt to assign CFLAGS += but it indubitably does --- at least on gmake 3.79.1. gmake bug?
-
Tom Lane authored
-
- 19 Oct, 2000 4 commits
-
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Bruce Momjian authored
-
- 18 Oct, 2000 5 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
This patch forces the use of 'DROP VIEW' to destroy views. It also changes the syntax of DROP VIEW to DROP VIEW v1, v2, ... to match the syntax of DROP TABLE. Some error messages were changed so this patch also includes changes to the appropriate expected/*.out files. Doc changes for 'DROP TABLE" and 'DROP VIEW' are included. -- Mark Hollomon
-
Philip Warner authored
-
Vadim B. Mikheev authored
LockRelId - ie physical information, not logical. It's required for WAL. Regression tests passed.
-