Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7db692c

Browse files
committed
RC2 preparations ...
1 parent135040d commit7db692c

File tree

3 files changed

+312
-2
lines changed

3 files changed

+312
-2
lines changed

‎ChangeLogs/ChangeLog-7.1RC1-to-7.1RC2

Lines changed: 310 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,310 @@
1+
2001-04-01 00:42 pjw
2+
3+
* src/bin/pg_dump/: pg_backup.h, pg_backup_archiver.c,
4+
pg_backup_archiver.h, pg_backup_custom.c, pg_backup_files.c,
5+
pg_backup_tar.c, pg_dump.c: Patch to put rudimentary dependency
6+
support into pg_dump. This addresses the UDT/function order
7+
problem.
8+
9+
- Rudimentary support for dependencies in archives.
10+
Uses dependencies to modify the OID used in sorting TOC
11+
entries. This will NOT handle multi-level dependencies,
12+
but will manage simple relationships like UDTs & their
13+
functions.
14+
15+
- Treat OIDs with more respect (avoid using ints, use macros
16+
for conversion & comparison).
17+
18+
2001-03-31 18:14 tgl
19+
20+
* src/interfaces/libpq/fe-connect.c: On Cygwin, do initial
21+
connect() call in blocking mode, per report from Jason Tishler.
22+
23+
2001-03-31 18:13 tgl
24+
25+
* src/interfaces/libpq/fe-misc.c: pqWait() should check for
26+
exception status as well as read or write ready. It appears that
27+
most (all?) Unixen will consider a socket to be read or write ready
28+
if it has an error condition, but of course Microsoft does things
29+
differently.
30+
31+
2001-03-30 15:50 tgl
32+
33+
* src/: backend/commands/creatinh.c,
34+
test/regress/expected/create_table.out,
35+
test/regress/expected/inherit.out: Re-allow specification of a new
36+
default value for an inherited column in CREATE TABLE, but give a
37+
warning notice. Clean up inconsistent handling of defaults and NOT
38+
NULL flags from multiply-inherited columns. Per pghackers
39+
discussion 28-Mar through 30-Mar.
40+
41+
2001-03-30 07:08 darcy
42+
43+
* src/interfaces/python/pgdb.py: Marc-Andre is changing where
44+
DateTime goes.This change allows the module to work either way.
45+
Change submitted by Andrew Kuchling <akuchlin@mems-exchange.org>
46+
47+
2001-03-30 07:04 darcy
48+
49+
* src/interfaces/python/pgdb.py: Correct indenting in _quote()
50+
function. Fix submitted by Andrew Kuchling
51+
<akuchlin@mems-exchange.org>
52+
53+
2001-03-30 00:25 tgl
54+
55+
* src/include/storage/itemptr.h: Add appropriately ifdef'd hack to
56+
make ARM compiler allocate ItemPointerData as six bytes not eight.
57+
This fixes a regression test failure but more importantly avoids
58+
wasting four bytes of pad space in every tuple header.Also add
59+
some commentary about what's going on.
60+
61+
2001-03-29 23:50 tgl
62+
63+
* src/bin/psql/tab-complete.c: random_seed => seed ...
64+
65+
2001-03-29 17:09 momjian
66+
67+
* src/bin/pgaccess/lib/languages/chinese_big5: Put proper pgaccess
68+
Chinese big5 file in place.
69+
70+
2001-03-29 14:03 petere
71+
72+
* src/backend/commands/variable.c: Rename 'random_seed' back to
73+
'seed'.
74+
75+
2001-03-29 13:25 petere
76+
77+
* doc/src/sgml/manage-ag.sgml: small fixes
78+
79+
2001-03-29 04:58 meskes
80+
81+
* src/interfaces/ecpg/: ChangeLog, include/ecpgtype.h: Applied bug
82+
fix by Adriaan Joubert <a.joubert@albourne.com>
83+
84+
2001-03-28 15:46 tgl
85+
86+
* doc/src/sgml/mvcc.sgml: Correct erroneous description of MVCC
87+
Read Committed semantics.
88+
89+
2001-03-27 13:02 tgl
90+
91+
* src/backend/optimizer/prep/prepunion.c: Quick hack to fix Oliver
92+
Elphick's problem with subselects in an inheritance query: make
93+
duplicate copies of subplans in adjust_inherited_attrs. When we
94+
redesign querytrees we really gotta do something about this issue
95+
of whether querytrees are read-only and can share substructure or
96+
not.
97+
98+
2001-03-27 12:12 tgl
99+
100+
* src/backend/optimizer/util/clauses.c: Repair pgindent damage to
101+
comments.
102+
103+
2001-03-27 11:34 momjian
104+
105+
* doc/src/Makefile: > Kinda looks like Ian broke the
106+
compile-in-source-dir case while
107+
> making the compile-in-separate-dir case work. Tut tut.
108+
109+
Yes. My apologies. This patch is one way to fix things.
110+
111+
Ian
112+
113+
2001-03-27 09:56 momjian
114+
115+
* doc/FAQ_AIX, src/Makefile.shlib,
116+
src/backend/port/aix/mkldexport.sh: The following patch updates the
117+
FAQ_AIX and makes C++ code work with more recent versions of the
118+
IBM C++ compiler (now called VisualAge C++). The C++ part was
119+
previously broken (g++ and xlC), thus this is zero risk. Only AIX
120+
specific parts are touched (1 Makefile.shlib line (link with
121+
$(COMPILER ) instead of $(CC) and one shell script line (parameter
122+
-C to nm to not demangle C++ symbo ls for .exp file)).
123+
124+
I thus ask you to please apply this patch before release.
125+
126+
With or without this patch RC1 on AIX 4.3.2 RS6000 passes "gmake
127+
check" for both the native compiler vac.C 5.0.1 and gcc 2.95.2 :-)
128+
129+
Andreas
130+
131+
2001-03-27 05:53 darcy
132+
133+
* src/interfaces/python/setup.py: Add changes from Mikhail Terekhov
134+
<terekhov@emc.com>.
135+
136+
Use Extension method from distutils.
137+
138+
Cleaned up mismatched indentation styles while I was at it.
139+
140+
2001-03-27 00:45 ishii
141+
142+
* src/bin/: initdb/initdb.sh, scripts/createdb: Add checking for
143+
valid database encoding.
144+
145+
2001-03-26 23:00 momjian
146+
147+
* src/interfaces/odbc/: bind.c, bind.h, columninfo.c, columninfo.h,
148+
connection.c, connection.h, convert.c, convert.h, dlg_specific.c,
149+
dlg_specific.h, drvconn.c, environ.c, environ.h, execute.c, gpps.c,
150+
gpps.h, info.c, iodbc.h, isql.h, isqlext.h, lobj.c, lobj.h, misc.c,
151+
misc.h, multibyte.c, multibyte.h, options.c, parse.c, pgtypes.c,
152+
pgtypes.h, psqlodbc.c, psqlodbc.h, qresult.c, qresult.h, results.c,
153+
setup.c, socket.c, socket.h, statement.c, statement.h, tuple.c,
154+
tuple.h, tuplelist.c, tuplelist.h: ODBC source code cleanup.
155+
Mostly alignment of #define constants.
156+
157+
2001-03-26 20:16 tgl
158+
159+
* src/backend/storage/buffer/s_lock.c: Spell __volatile__
160+
correctly.
161+
162+
2001-03-26 12:51 momjian
163+
164+
* src/test/regress/resultmap: OpenBSD resultmap change:
165+
166+
I posted this to the list a few days ago, but it was not
167+
addressed. Can someone please make the changes to the
168+
src/test/regress/resultmap?
169+
170+
Thanks.
171+
172+
- brandon
173+
174+
2001-03-26 12:00 momjian
175+
176+
* src/backend/tcop/postgres.c: Add period to message.
177+
178+
2001-03-26 11:59 momjian
179+
180+
* src/backend/tcop/postgres.c: Change message to _the_
181+
administrator.There is only one administrative account.
182+
183+
This connection has been terminated by the administrator.
184+
185+
2001-03-26 10:21 tgl
186+
187+
* src/include/config.h.win32: Add #define HAVE_ATEXIT, per report
188+
from Magnus.
189+
190+
2001-03-26 10:18 tgl
191+
192+
* src/bin/psql/mainloop.c: pqsignal call needs to be #ifndef WIN32,
193+
per report from Magnus.
194+
195+
2001-03-26 04:34 inoue
196+
197+
* src/interfaces/odbc/GNUmakefile: Add multibyte support
198+
199+
2001-03-26 03:32 ishii
200+
201+
* doc/README.mb.jp: Fix typo
202+
203+
2001-03-25 18:23 tgl
204+
205+
* src/backend/: access/heap/heapam.c, commands/vacuum.c,
206+
storage/large_object/inv_api.c, utils/mb/wstrncmp.c: Fix unportable
207+
assumptions about alignment of local char[n] variables.
208+
209+
2001-03-25 17:40 tgl
210+
211+
* src/include/access/htup.h: Improve comments for xlog item size
212+
#defines.
213+
214+
2001-03-25 17:23 darcy
215+
216+
* src/interfaces/python/: Announce, ChangeLog: Update the changes
217+
for version 3.2.
218+
219+
2001-03-25 17:22 darcy
220+
221+
* src/interfaces/python/README: Document the --with-python flag as
222+
a simpler way of installing the PyGreSQL module when installing
223+
PostgreSQL.
224+
225+
Document the location of the WIN32 binaries.
226+
227+
2001-03-25 14:44 petere
228+
229+
* src/interfaces/python/: GNUmakefile, Setup.in.raw: Pick up any
230+
extra -I options for Python build.
231+
232+
2001-03-25 14:30 tgl
233+
234+
* src/interfaces/odbc/socket.c: Fix unportable assumptions about
235+
alignment of local char[n] variables.
236+
237+
2001-03-25 13:14 tgl
238+
239+
* doc/src/sgml/func.sgml: The regexp pattern characters ^ and $
240+
should be explained as matching at the beginning and end of the
241+
input string, not the beginning and end of "a line", since Postgres
242+
does not allow them to match at newline characters in the data.
243+
244+
2001-03-25 12:52 tgl
245+
246+
* src/include/storage/s_lock.h: Re-order declarations to un-break
247+
the non-HAS_TEST_AND_SET case.
248+
249+
2001-03-25 05:16 petere
250+
251+
* doc/src/sgml/pltcl.sgml: spell fix
252+
253+
2001-03-25 03:32 petere
254+
255+
* doc/src/: Makefile, sgml/Makefile: Allow building documentation
256+
outside source tree. from Ian Lance Taylor
257+
258+
2001-03-24 19:45 tgl
259+
260+
* src/backend/access/heap/tuptoaster.c: Fix code that incorrectly
261+
assumed a 'char foo[N]' local variable would be aligned on a word
262+
boundary. Per report from Steve Nicolai.
263+
264+
2001-03-24 18:32 petere
265+
266+
* src/test/regress/pg_regress.sh: Make less misleading message for
267+
failed + ignored tests.
268+
269+
2001-03-24 18:11 tgl
270+
271+
* src/bin/pg_dump/pg_backup_null.c: Portability fix from Steve
272+
Nicolai.
273+
274+
2001-03-24 18:03 petere
275+
276+
* doc/src/sgml/: catalogs.sgml, datatype.sgml, perform.sgml,
277+
protocol.sgml, queries.sgml, sql.sgml, xaggr.sgml, xindex.sgml,
278+
y2k.sgml, ref/psql-ref.sgml, ref/select.sgml: minor copy editing
279+
280+
2001-03-24 08:21 petere
281+
282+
* doc/src/sgml/reference.sgml, src/bin/pg_dump/Makefile: Disable
283+
pg_upgrade.
284+
285+
2001-03-24 01:17 tgl
286+
287+
* src/makefiles/Makefile.hpux: Hadn't built on a PARISC 1.1 box in
288+
a long time ... but when I did, it turned out that the libpq
289+
makefile chokes on '-L /lib/pa1.1'. Need to remove the space so
290+
filter rule works.
291+
292+
2001-03-23 22:40 tgl
293+
294+
* doc/src/sgml/problems.sgml: Update info about mailing lists, make
295+
a few other minor improvements.
296+
297+
2001-03-23 21:36 thomas
298+
299+
* doc/src/sgml/installation.sgml: Update to the current state of
300+
platform support. Still need some tested for the 7.1 release.
301+
302+
2001-03-23 21:35 thomas
303+
304+
* doc/src/sgml/ref/create_type.sgml: Fix up wording slightly. No
305+
change in content.
306+
307+
2001-03-23 19:48 scrappy
308+
309+
* ChangeLogs/ChangeLog-7.1beta6-7.1RC1:
310+
update the ChangeLog in preparation for release ...

‎configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ ac_config_sub=$ac_aux_dir/config.sub
609609
ac_configure=$ac_aux_dir/configure# This should be Cygnus configure.
610610

611611

612-
VERSION='7.1RC1'
612+
VERSION='7.1RC2'
613613

614614
cat>> confdefs.h<<EOF
615615
#define PG_VERSION "$VERSION"

‎configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ AC_CONFIG_HEADER(src/include/config.h)
2828
AC_PREREQ(2.13)
2929
AC_CONFIG_AUX_DIR(config)
3030

31-
VERSION='7.1RC1'
31+
VERSION='7.1RC2'
3232
AC_SUBST(VERSION)
3333
AC_DEFINE_UNQUOTED(PG_VERSION, "$VERSION")
3434

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp