summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2001-08-15Use malloc/palloc as appropriate.Bruce Momjian
2001-08-15Move md5.h contents to crypt.h.Bruce Momjian
2001-08-15Add new files.Bruce Momjian
2001-08-15Use MD5 for wire protocol encryption for >= 7.2 client/server.Bruce Momjian
Allow pg_shadow to be MD5 encrypted. Add ENCRYPTED/UNENCRYPTED option to CREATE/ALTER user. Add password_encryption postgresql.conf option. Update wire protocol version to 2.1.
2001-08-15Add conver/convert2 functions. They are similar to the SQL99's convert.Tatsuo Ishii
2001-08-14sum() on int2 and int4 columns now uses an int8, not numeric, accumulatorTom Lane
for speed reasons; its result type also changes to int8. avg() on these datatypes now accumulates the running sum in int8 for speed; but we still deliver the final result as numeric, so that fractional accuracy is preserved. count() now counts and returns in int8, not int4. I am a little nervous about this possibly breaking users' code, but there didn't seem to be a strong sentiment for avoiding the problem. If we get complaints during beta, we can change count back to int4 and add a "count8" aggregate. For that matter, users can do it for themselves with a simple CREATE AGGREGATE command; the int4inc function is still present, so no C hacking is needed. Also added max() and min() aggregates for OID that do proper unsigned comparison, instead of piggybacking on int4 aggregates. initdb forced.
2001-08-14Fix brokenness of nested EXCEPT/INTERSECT queries. prepunion was beingTom Lane
a tad sloppy about generating the targetlist for some nodes, by generating a tlist entry that claimed to be a constant when the value wasn't actually constant. This caused setrefs.c to do the wrong thing later on.
2001-08-13Make LANCOMPILER clause in CREATE LANGUAGE optional. Allow "identifier"Peter Eisentraut
syntax for language names (instead of 'string'). createlang now handles the case where a second language uses the same call handler as an already installed language (e.g., plperl/plperlu). droplang now handles the reverse case, i.e., dropping a language where the call handler is still used by another language. Moreover, droplang can now be used to drop any user-defined language, not just the supplied ones.
2001-08-13Make hashjoin give the right answer with toasted input data.Tom Lane
2001-08-13Add comparison operators and btree indexing support for type bytea.Tom Lane
From Joe Conway.
2001-08-12Make ALTER TABLE RENAME on a view rename the view's on-select rule too.Tom Lane
Needed to keep pg_dump from getting confused.
2001-08-12Make pg_dump handle the new privileges.Peter Eisentraut
Don't hardcode the maximum accepted server version, use PG_VERSION instead. Install a notice processor so notices are handled like error messages. Word smithing.
2001-08-11Clean up some warnings and bugs and make things build easier.Peter Eisentraut
2001-08-11CREATE VIEW with optional column name list wasn't quite right for theTom Lane
case where there are resjunk columns in the query.
2001-08-10Revert removal of relhaspkey support; fix unnecessary use of pg_index.oid.Tom Lane
2001-08-10Since PQoidStatus is deprecated, we should probably stop using it inTom Lane
our own code ...
2001-08-10updatePeter Eisentraut
2001-08-10Cleanup some minor oversights in optional-OIDs stuff.Tom Lane
2001-08-10Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane
default, but OIDS are removed from many system catalogs that don't need them. Some interesting side effects: TOAST pointers are 20 bytes not 32 now; pg_description has a three-column key instead of one. Bugs fixed in passing: BINARY cursors work again; pg_class.relhaspkey has some usefulness; pg_dump dumps comments on indexes, rules, and triggers in a valid order. initdb forced.
2001-08-10Fix collateral damage from error message cleanup.Tom Lane
2001-08-10message refinementsPeter Eisentraut
2001-08-10Attached is a patch to remove some redundant code in the JDBC driver.Bruce Momjian
* Merges identical code from org.postgresql.jdbc[1|2].Statement into org.postgresql.Statement. * Moves escapeSQL() method from Connection to Statement (the only place it's used) * Minor cleanup of the new isolation level stuff. * Minor cleanup of version string handling. Anders Bengtsson
2001-08-101. null-safe interface to GiSTBruce Momjian
(as proposed in http://fts.postgresql.org/db/mw/msg.html?mid=1028327) 2. support for 'pass-by-value' arguments - to test this we used special opclass for int4 with values in range [0-2^15] More testing will be done after resolving problem with index_formtuple and implementation of B-tree using GiST 3. small patch to contrib modules (seg,cube,rtree_gist,intarray) - mark functions as 'isstrict' where needed. Oleg Bartunov
2001-08-10Patch to LOCK multiple tables in one LOCK command.Bruce Momjian
Neil Padgett
2001-08-10Add new files for the preparation.Hiroshi Inoue
2001-08-09This should be the right expected file.Peter Eisentraut
2001-08-09Use format_type sibling in backend error messages, so the user seesPeter Eisentraut
consistent type naming.
2001-08-09No longer a need for -Wno-errorPeter Eisentraut
2001-08-09Update branding for 7.1.3, no HISTORY yet.Bruce Momjian
2001-08-09Fix Cygwin build, per Jason Tishler.Tom Lane
2001-08-09Add TOAST table to the set of relkinds known to \d.Tom Lane
2001-08-080 -> OPeter Eisentraut
2001-08-07I think you replaced too many things with put(...Bruce Momjian
Here is a context diff from latest cvs And I see why you couldn't apply the last diff, the setCatalog diff has been backed out, that was causing the compile problem in the first place. This following one needs to be applied to allow the current cvs to compile Dave Cramer
2001-08-07A small patch to keep postgres working on the latest BeOS.Bruce Momjian
Cyril VELTER
2001-08-07Fix thinko (revealed by gcc warning).Tom Lane
2001-08-07Russian translation by Serguei MokhovPeter Eisentraut
2001-08-07Czech translation for psql from Karel ZakPeter Eisentraut
2001-08-07Add a check for end of client connection before expecting a passwordPeter Eisentraut
response, to avoid noise in the server log.
2001-08-06Doesn't seem to be much point in keeping this README up to date anymore,Tom Lane
since it's completely redundant with regress.sgml. I think we agreed to remove it awhile back, actually, but no one got around to doing it.
2001-08-06Use a fixed error message for ERANGE to avoid duplicate test result files.Peter Eisentraut
Add some resultmap entries for SCO OpenServer.
2001-08-06Seems like a bad idea to free() a string we are about to use in anTom Lane
error message.
2001-08-06Modify partial-index-predicate applicability tester to test whetherTom Lane
clauses are equal(), before trying to match them up using btree opclass inference rules. This allows it to recognize many simple cases involving non-btree operations, for example 'x IS NULL'. Clean up code a little.
2001-08-06Evaluate LIMIT/OFFSET expressions with ExecEvalExprSwitchContext, notTom Lane
ExecEvalExpr, to avoid possible memory leak.
2001-08-06Check that the data directory does not have group or world access; removePeter Eisentraut
a similar check on postgresql.conf.
2001-08-06Add QueryIsRule gram.y reset.Bruce Momjian
2001-08-06Surely the pg_stat interrogation functions must not be marked proiscachable.Tom Lane
2001-08-05Show index predicate when doing \d on a partial index.Tom Lane
2001-08-05Endeavor to make pgstats buffer process (a) safe and (b) useful.Tom Lane
Make sure it exits immediately when collector process dies --- in old code, buffer process would hang around and compete with the new buffer process for packets. Make sure it doesn't block on writing the pipe when the collector falls more than a pipeload behind. Avoid leaking pgstats FDs into every backend.
2001-08-05Remove no-longer-needed fcntl call (I'm not sure it *ever* did anythingTom Lane
useful, in fact).
2001-08-04Back out LOCK A,B,C patch at Tom's suggestion.Bruce Momjian