Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 72401a4

Browse files
committed
update configure to beta4 Install a ChangeLog file from beta3->beta4
1 parent 4ad1806 commit 72401a4

File tree

3 files changed

+236
-2
lines changed

3 files changed

+236
-2
lines changed
Lines changed: 234 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,234 @@
1+
2001-01-27 14:36 momjian
2+
3+
* src/bin/pgaccess/lib/languages/: euskara, japanese, nederlands:
4+
Add missing pgaccess files.
5+
6+
2001-01-27 06:19 petere
7+
8+
* doc/src/sgml/ref/checkpoint.sgml: Add permission check for
9+
CHECKPOINT.
10+
11+
2001-01-24 23:45 tgl
12+
13+
* src/backend/storage/lmgr/deadlock.c: Whoops, forgot to do
14+
ProcLockWakeup() after deadlock checker rearranges wait queues.
15+
16+
2001-01-24 23:31 tgl
17+
18+
* src/backend/storage/lmgr/deadlock.c: Re-implement deadlock
19+
detection and resolution, per design notes posted to pghackers on
20+
18-Jan-01.
21+
22+
2001-01-24 20:02 momjian
23+
24+
* src/interfaces/jdbc/org/postgresql/core/BytePoolDim1.java: This
25+
patch fixes an arrayindexoutofbounds exception that was just
26+
introduced into the code. The fix is a fix to
27+
org.postgresql.core.ByteArrayDim1.java.
28+
29+
Barry Lind
30+
31+
2001-01-24 19:15 petere
32+
33+
* doc/src/sgml/wal.sgml: WAL documentation, from Oliver Elphick and
34+
Vadim Mikheev.
35+
36+
2001-01-24 17:56 petere
37+
38+
* doc/src/sgml/ref/checkpoint.sgml: Update based on documentation
39+
written by Vadim Mikheev and Oliver Elphick.
40+
41+
2001-01-24 01:49 momjian
42+
43+
* contrib/oid2name/oid2name: Oops, got binary in there too.
44+
45+
2001-01-24 01:06 momjian
46+
47+
* contrib/oid2name/oid2name.o: Oops, had .o file in there.
48+
49+
2001-01-23 23:46 momjian
50+
51+
* contrib/pgcrypto/: encode.c, encode.h: I would like to do a
52+
interface change in pgcrypto. (Good timing, I know :)) At the
53+
moment the digest() function returns hexadecimal coded hash, but I
54+
want it to return pure binary. I have also included functions
55+
encode() and decode() which support 'base64' and 'hex' encodings,
56+
so if anyone needs digest() in hex he can do encode(digest(...),
57+
'hex').
58+
59+
Main reason for it is "to do one thing and do it well" :)
60+
61+
Another reason is if someone needs really lot of digesting, in the
62+
end he wants to store the binary not the hexadecimal result. It is
63+
really silly to convert it to hex then back to binary again. As I
64+
said if someone needs hex he can get it.
65+
66+
Well, and the real reason that I am doing encrypt()/decrypt()
67+
functions and _they_ return binary. For testing I like to see it
68+
in hex occasionally, but it is really wrong to let them return hex.
69+
Only now it caught my eye that hex-coding in digest() is wrong.
70+
When doing digest() I thought about 'common case' but hacking with
71+
psql is probably _not_ the common case :)
72+
73+
Marko Kreen
74+
75+
2001-01-23 23:40 momjian
76+
77+
* contrib/oid2name/: Makefile, oid2name.c: Update
78+
79+
2001-01-23 20:41 momjian
80+
81+
* contrib/oid2name/: Makefile, README.oid2name, oid2name,
82+
oid2name.c, oid2name.o: Add oid2name. Add streaming option later.
83+
84+
2001-01-23 06:22 peter
85+
86+
* contrib/retep/: CHANGELOG, build.xml, retep.jpx, data/cds.dtd,
87+
data/cds.xml, uk/org/retep/xml/core/XMLFactory.java,
88+
uk/org/retep/xml/core/XMLFactoryException.java,
89+
uk/org/retep/xml/jdbc/XMLDatabase.java,
90+
uk/org/retep/xml/jdbc/XMLResultSet.java,
91+
uk/org/retep/xml/parser/TagHandler.java,
92+
uk/org/retep/xml/test/XMLExport.java: Some more additions to
93+
contrib for JDBC
94+
95+
2001-01-22 19:34 petere
96+
97+
* doc/src/sgml/queries.sgml: Rip out table expression section from
98+
SQL syntax chapter and develop it into new chapter on query
99+
(SELECT) syntax. In the end this should become a narrative and
100+
example-filled counterpart to the SELECT reference page.
101+
102+
2001-01-18 13:38 peter
103+
104+
*
105+
src/interfaces/jdbc/org/postgresql/jdbc2/UpdateableResultSet.java:
106+
Forgot to cvs add UpdateableResultSet.java ;-)
107+
108+
2001-01-18 13:37 peter
109+
110+
* src/interfaces/jdbc/jdbc.jpx: Thu Jan 18 17:37:00 GMT 2001
111+
peter@retep.org.uk - Added new error message into
112+
errors.properties "postgresql.notsensitive" This is used
113+
by jdbc2.ResultSet when a method is called that should
114+
fetch the current value of a row from the database refreshRow() for
115+
example. - These methods no longer throw the not
116+
implemented but the new noupdate error. This is in
117+
preparation for the Updateable ResultSet support which
118+
will overide these methods by extending the existing class to
119+
implement that functionality, but needed to show something
120+
other than notimplemented:
121+
moveToCurrentRow() moveToInsertRow()
122+
rowDeleted() rowInserted() all update*()
123+
methods, except those that took the column as a String
124+
as they were already implemented to convert the String to an int.
125+
- getFetchDirection() and setFetchDirection() now throws
126+
"postgresql.notimp" as we only support one direction.
127+
The CursorResultSet will overide this when its implemented.
128+
- Created a new class under jdbc2 UpdateableResultSet which
129+
extends ResultSet and overides the relevent update
130+
methods. This allows us to implement them easily at a
131+
later date. - In jdbc2.Connection, the following methods
132+
are now implemented:
133+
createStatement(type,concurrency); getTypeMap();
134+
setTypeMap(Map); - The JDBC2 type mapping scheme
135+
almost complete, just needs SQLInput & SQLOutput to be
136+
implemented. - Removed some Statement methods that somehow
137+
appeared in Connection. - In jdbc2.Statement()
138+
getResultSetConcurrency() getResultSetType()
139+
setResultSetConcurrency() setResultSetType()
140+
- Finally removed the old 6.5.x driver.
141+
142+
2001-01-18 10:50 peter
143+
144+
* build.xml, contrib/retep/CHANGELOG, contrib/retep/Implementation,
145+
contrib/retep/README, contrib/retep/build.xml,
146+
contrib/retep/retep.jpx,
147+
contrib/retep/uk/org/retep/xml/parser/TagHandler.java,
148+
contrib/retep/uk/org/retep/xml/parser/TagListener.java,
149+
src/interfaces/jdbc/jdbc.jpx,
150+
src/interfaces/jdbc/org/postgresql/core/BytePoolDim1.java,
151+
src/interfaces/jdbc/org/postgresql/core/BytePoolDim2.java,
152+
src/interfaces/jdbc/org/postgresql/core/MemoryPool.java,
153+
src/interfaces/jdbc/org/postgresql/core/ObjectPool.java,
154+
src/interfaces/jdbc/org/postgresql/core/SimpleObjectPool.java: Thu
155+
Jan 18 12:24:00 GMT 2001 peter@retep.org.uk - These methods
156+
in org.postgresql.jdbc2.ResultSet are now implemented:
157+
getBigDecimal(int) ie: without a scale (why did this get missed?)
158+
getBlob(int) getCharacterStream(int)
159+
getConcurrency() getDate(int,Calendar)
160+
getFetchDirection() getFetchSize()
161+
getTime(int,Calendar) getTimestamp(int,Calendar)
162+
getType() NB: Where int represents the column name,
163+
the associated version taking a String were already
164+
implemented by calling the int version. -
165+
These methods no longer throw the not implemented but the new
166+
noupdate error. This is in preparation for the
167+
Updateable ResultSet support which will overide these
168+
methods by extending the existing class to implement
169+
that functionality, but needed to show something other than
170+
notimplemented: cancelRowUpdates()
171+
deleteRow() - Added new error message into
172+
errors.properties "postgresql.noupdate" This is used by
173+
jdbc2.ResultSet when an update method is called and the
174+
ResultSet is not updateable. A new method notUpdateable() has been
175+
added to that class to throw this exception, keeping the
176+
binary size down. - Added new error message
177+
into errors.properties "postgresql.psqlnotimp" This is
178+
used instead of unimplemented when it's a feature in the
179+
backend that is preventing this method from being implemented.
180+
- Removed getKeysetSize() as its not part of the ResultSet API
181+
182+
Thu Jan 18 09:46:00 GMT 2001 peter@retep.org.uk - Applied
183+
modified patch from Richard Bullington-McGuire
184+
<rbulling@microstate.com>. I had to modify it as some of the code
185+
patched now exists in different classes, and some of it
186+
actually patched obsolete code.
187+
188+
Wed Jan 17 10:19:00 GMT 2001 peter@retep.org.uk - Updated
189+
Implementation to include both ANT & JBuilder - Updated
190+
README to reflect the changes since 7.0 - Created jdbc.jpr
191+
file which allows JBuilder to be used to edit the source.
192+
JBuilder _CAN_NOT_ be used to compile. You must use ANT for
193+
that. It's only to allow JBuilders syntax checking to improve the
194+
drivers source. Refer to Implementation for more details
195+
196+
2001-01-12 23:11 petere
197+
198+
* doc/src/sgml/ref/checkpoint.sgml: New shell for the to be written
199+
CHECKPOINT documentation, so the summary shows up in psql now.
200+
201+
2001-01-12 22:18 petere
202+
203+
* contrib/intarray/Makefile: Clean up garbage.
204+
205+
2001-01-12 22:14 petere
206+
207+
* contrib/intarray/README: Surely one README file is enough.
208+
209+
2001-01-12 20:57 scrappy
210+
211+
* ChangeLogs/ChangeLog-7.1beta1-to-7.1beta3:
212+
okay, this appears to work ...
213+
214+
onlly changes aer adding some white space ...
215+
216+
2001-01-12 18:36 petere
217+
218+
* contrib/intarray/Makefile.703: Surely we don't need a 7.0.3
219+
makefile in 7.1.
220+
221+
2001-01-12 01:37 momjian
222+
223+
* contrib/intarray/README: Add to DROP todo.
224+
225+
2001-01-11 20:16 scrappy
226+
227+
* contrib/intarray/: Makefile, Makefile.703, README.intarray,
228+
_int.c, _int.sql.in, bench/bench.pl, bench/create_test.pl,
229+
data/test__int.data, expected/_int.out, sql/_int.sql:
230+
commit Oleg and Teodor's RD-tree implementation ... this provides
231+
the regression tests for the GiST changes ... this should be
232+
integrated into the regular regression tests similar to Vadim's SPI
233+
contrib stuff ...
234+

configure

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

609609

610-
VERSION='7.1beta3'
610+
VERSION='7.1beta4'
611611

612612
cat >> confdefs.h <<EOF
613613
#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.1beta3'
31+
VERSION='7.1beta4'
3232
AC_SUBST(VERSION)
3333
AC_DEFINE_UNQUOTED(PG_VERSION, "$VERSION")
3434

0 commit comments

Comments
 (0)