Bruce Momjian
e064ac74fc
Update for pgaccess 0.98
1999-11-02 00:24:29 +00:00
Bruce Momjian
18970dc6d3
Update for 6.5.3.
1999-11-01 16:21:18 +00:00
Tom Lane
c3f6f4363d
Backpatch REL6_5 for missing inherit '*' in rule dumps.
1999-11-01 14:35:52 +00:00
Bruce Momjian
34bffa972a
Update for pgaccess 0.98.
1999-10-31 19:56:37 +00:00
Bruce Momjian
b77016b17d
Update for pgaccess 0.98.
1999-10-31 12:40:38 +00:00
Bruce Momjian
0f256e763e
Update for 0.98 pgaccess
1999-10-31 12:34:10 +00:00
Bruce Momjian
f3b4c0df0c
Update pgaccess for 0.98.
1999-10-30 21:22:07 +00:00
Tom Lane
8f292410bb
Back-patch LIMIT + INTERSECT fix into 6.5.*.
1999-10-19 04:38:07 +00:00
Hiroshi Inoue
a9ba771b4e
Not to change pg_log status after "commit".
...
This will happen when elog(ERROR)(elog(FATAL) also in 7.0) is
called in vacuum after the internal commit.
1999-10-19 02:54:39 +00:00
Bruce Momjian
ffed5788dd
update jdbc version #.
1999-10-13 11:11:41 +00:00
Bruce Momjian
f6de83ccc3
Update new HISTORY file.
1999-10-12 16:04:48 +00:00
Bruce Momjian
10c2a58b61
Update for 6.5.3, including new INSTALL file and updated HISTORY.
1999-10-12 15:35:08 +00:00
Bruce Momjian
5d76ea6dc5
I have created a small patch that makes possible to compile pgsql on newer
...
Cygwin snapshots (tested on 990115 which is recommended to use - it fixes
some errors in B20.1)
And I have another patch for including <sys/ipc.h> before <sys/sem.h> in
backend/storage/lmgr/proc.c - it is required due the design of cygipc
headers
Dan
1999-10-12 14:55:01 +00:00
Bruce Momjian
987b1b9e55
Move __alpha to port/alpha.h.
1999-10-09 01:30:46 +00:00
Bruce Momjian
df26ad5acc
Define __alpha__ for __alpha.
1999-10-08 17:15:07 +00:00
Bruce Momjian
40771ca436
Update README.NT
1999-09-28 13:08:27 +00:00
Bruce Momjian
a4d7c97712
Update FAQ.
1999-09-28 05:10:18 +00:00
Bruce Momjian
1c575efdc1
Update NT readme.
1999-09-28 01:43:20 +00:00
Bruce Momjian
0b83859b63
Update README.NT
1999-09-27 19:56:02 +00:00
Bruce Momjian
c67286ce5d
Update README.NT with patch.
1999-09-27 18:33:21 +00:00
Bruce Momjian
550a416fa9
New Solaris FAQ.
1999-09-27 16:54:01 +00:00
Bruce Momjian
039e7a4791
new solaris faq.
1999-09-27 03:39:06 +00:00
Bruce Momjian
393ccc3993
Remove 'v' from #include line.
1999-09-27 00:33:46 +00:00
Thomas G. Lockhart
4efb2ff001
Fix the omitted declarations to allow '^' and '|' as math operators.
...
Problem was introduced when precedence was added for these.
How did *those* changes get into the stable tree in the first place??
1999-09-24 15:08:59 +00:00
Bruce Momjian
b8e2e3fb18
Backpatch into 6.5.*.
...
One last missing quoting bug in pg_dump:
now that sequence names are properly quoted for field defaults, mixed
case sequence names are generated. These are properly quoted in the
CREATE SEQUENCE lines, but not in the SELECT nextval lines, as per
below:
CREATE SEQUENCE "Teams_TeamID_seq" start 10 increment 1 maxvalue
2147483647 minvalue 1 cache 1 ;
SELECT nextval ('Teams_TeamID_seq');
This needs to be:
SELECT nextval ('"Teams_TeamID_seq"');
Patch included below.
--
Ross J. Reedstrom, Ph.D., <reedstrm@rice.edu>
1999-09-23 19:13:55 +00:00
Bruce Momjian
471881788f
Add new files.
1999-09-20 22:03:21 +00:00
Bruce Momjian
20a97d8079
Update pgaccess 0.98.
1999-09-20 21:47:21 +00:00
Tom Lane
7fe22f5c8b
Back-patch fix for NULL condition in CASE.
1999-09-18 23:30:05 +00:00
Bruce Momjian
bed8cf4d83
re-add Makefile for pgaccess
1999-09-17 04:02:20 +00:00
Tom Lane
d5d33e2ee4
Another little 'must fix' for 6.5.2: someone removed HAVE_KILL
...
from the configuration symbols, but neglected to remove #ifdef HAVE_KILL
from async.c in the REL6_5 branch. Result: cross-backend NOTIFY dead in
the water.
1999-09-14 22:33:35 +00:00
Tom Lane
05a275926b
Last-minute fix for 6.5.2: repair optimizer coredump on
...
CASE clauses in WHERE. Surprised no one noticed this before.
1999-09-14 20:26:02 +00:00
Thomas G. Lockhart
453e30e523
Update from Andreas Zeugswetter <andreas.zeugswetter@telecom.at>
...
for v6.5.2 info.
1999-09-14 15:33:50 +00:00
Thomas G. Lockhart
4edb7770f6
Allow ISOLATION and LEVEL as column names. These are SQL92 reserved words
...
which do not need to be so for our parser. Apparently omitted earlier.
1999-09-14 06:07:35 +00:00
Bruce Momjian
9408abd6b7
Update for 6.5.2 history file.
1999-09-13 22:38:51 +00:00
Bruce Momjian
e8a71f0dd3
Update pgaccess 0.98
1999-09-13 18:47:42 +00:00
Bruce Momjian
45b5e0f84b
Update vadim for index reuse.
1999-09-13 17:10:33 +00:00
Thomas G. Lockhart
68bd59aab1
Merge in v6.5.2 notes taken from release.sgml.
1999-09-13 04:35:14 +00:00
Thomas G. Lockhart
400676afc9
Allow CASE statement to contain *only* untyped result clauses or nulls.
...
Almost worked before, but forgot one place to check.
Reported by Tatsuo Ishii.
Still does not do the right thing if inserting into a non-string target
column. Should look for a type coersion later, but doesn't.
1999-09-13 04:21:21 +00:00
Bruce Momjian
e86054e2c3
Update release notes for 6.5.2.
1999-09-13 02:47:25 +00:00
Bruce Momjian
8b20b8baee
Update for 6.5.2.
1999-09-13 00:20:48 +00:00
Bruce Momjian
8401a89868
Update to 6.5.2.
1999-09-13 00:13:24 +00:00
Marc G. Fournier
2bb6c94fd9
Didn't commit right last time...SRCH_LIBS fix...
1999-09-12 22:58:37 +00:00
Marc G. Fournier
d87a36a5b5
when checking include directories, make sure you check for existence of
...
SRCH_INC also...makes template file kinda useless without :)
1999-09-12 22:47:14 +00:00
Marc G. Fournier
6592a8aaa4
cygwin defines BYTE_ORDER in sys/param.h, and has no endian.h ...
1999-09-12 22:25:32 +00:00
Tom Lane
805ee87b7d
Repair incorrect cleanup of heap memory allocation during
...
transaction abort --- before it only worked if there was exactly one level
of allocation context stacked in the blank portal. Now it does the right
thing for any depth, including zero...
1999-09-09 16:29:22 +00:00
Tom Lane
3279f0d546
StreamConnection() mustn't call elog().
1999-09-08 23:00:51 +00:00
Tom Lane
c7e3adf703
Repair logic error in LIKE: should not return LIKE_ABORT
...
when reach end of pattern before end of text. Improve code comments.
1999-09-07 19:12:16 +00:00
Tom Lane
63858aaf26
Irix linking fix from Yu Cao <yucao@falcon.kla-tencor.com>
1999-09-07 18:11:35 +00:00
Tom Lane
60c3ccffbe
Comment out FileUnlink of excess segments during mdtruncate().
...
This is unsafe in 6.5 because other backends may be able to access the file
before noticing the shared cache inval message that tells 'em to re-open
the file. We have fixed this for 6.6 but the changes seem too risky to
back-patch for 6.5.2.
Also, back-patch Tatsuo's change to prevent creation of files during
mdopen().
1999-09-06 20:00:15 +00:00
Tom Lane
958e45a84b
Backpatch fix for unary operators in rule deparser.
1999-09-05 22:55:28 +00:00