aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* updatePeter Eisentraut2001-08-10
|
* Cleanup some minor oversights in optional-OIDs stuff.Tom Lane2001-08-10
|
* Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane2001-08-10
| | | | | | | | | | | | 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.
* Fix collateral damage from error message cleanup.Tom Lane2001-08-10
|
* message refinementsPeter Eisentraut2001-08-10
|
* No longer need TODO.detail/lock.Bruce Momjian2001-08-10
|
* The portion about the PQgetssl() function in the libpq documentationBruce Momjian2001-08-10
| | | | | | | appears to be duplicated (two identical <listitems> right after each other). Here is a quick patch to remove one instance of it. Magnus Hagander
* Attached is a patch to remove some redundant code in the JDBC driver.Bruce Momjian2001-08-10
| | | | | | | | | | | * 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
* 1. null-safe interface to GiSTBruce Momjian2001-08-10
| | | | | | | | | | | | | | (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
* Patch to LOCK multiple tables in one LOCK command.Bruce Momjian2001-08-10
| | | | Neil Padgett
* Update TODO list.Bruce Momjian2001-08-10
|
* Update TODO list.Bruce Momjian2001-08-10
|
* Add new files for the preparation.Hiroshi Inoue2001-08-10
|
* This should be the right expected file.Peter Eisentraut2001-08-09
|
* Use format_type sibling in backend error messages, so the user seesPeter Eisentraut2001-08-09
| | | | consistent type naming.
* No longer a need for -Wno-errorPeter Eisentraut2001-08-09
|
* Update branding for 7.1.3, no HISTORY yet.Bruce Momjian2001-08-09
|
* corrections from the DocNotesPeter Eisentraut2001-08-09
|
* Fix Cygwin build, per Jason Tishler.Tom Lane2001-08-09
|
* Add TOAST table to the set of relkinds known to \d.Tom Lane2001-08-09
|
* 0 -> OPeter Eisentraut2001-08-08
|
* some clarifications inspired by the DocNotesPeter Eisentraut2001-08-07
|
* Update README for fuzzystrmatch description.Bruce Momjian2001-08-07
|
* Sorry - I should have gotten to this sooner. Here's a patch which you shouldBruce Momjian2001-08-07
| | | | | | | | | be able to apply against what you just committed. It rolls soundex into fuzzystrmatch. Remove soundex/metaphone and merge into fuzzystrmatch. Joe Conway
* I think you replaced too many things with put(...Bruce Momjian2001-08-07
| | | | | | | | | | | | | 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
* A small patch to keep postgres working on the latest BeOS.Bruce Momjian2001-08-07
| | | | Cyril VELTER
* Per this discussion, here's a patch to implement both levenshtein() andBruce Momjian2001-08-07
| | | | | | | | | | | | | | | | | | metaphone() in a contrib. There seem to be a fair number of different approaches to both of these algorithms. I used the simplest case for levenshtein which has a cost of 1 for any character insertion, deletion, or substitution. For metaphone, I adapted the same code from CPAN that the PHP folks did. A couple of questions: 1. Does it make sense to fold the soundex contrib together with this one? 2. I was debating trying to add multibyte support to levenshtein (it would make no sense at all for metaphone), but a quick search through the contrib directory found no hits on the word MULTIBYTE. Should worry about adding multibyte support to levenshtein()? Joe Conway
* Fix thinko (revealed by gcc warning).Tom Lane2001-08-07
|
* Russian translation by Serguei MokhovPeter Eisentraut2001-08-07
|
* Czech translation for psql from Karel ZakPeter Eisentraut2001-08-07
|
* Add a check for end of client connection before expecting a passwordPeter Eisentraut2001-08-07
| | | | response, to avoid noise in the server log.
* Doesn't seem to be much point in keeping this README up to date anymore,Tom Lane2001-08-06
| | | | | 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.
* Update now-obsolete example of platform-specific regression comparisonTom Lane2001-08-06
| | | | files.
* Use a fixed error message for ERANGE to avoid duplicate test result files.Peter Eisentraut2001-08-06
| | | | Add some resultmap entries for SCO OpenServer.
* Seems like a bad idea to free() a string we are about to use in anTom Lane2001-08-06
| | | | error message.
* Modify partial-index-predicate applicability tester to test whetherTom Lane2001-08-06
| | | | | | 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.
* Evaluate LIMIT/OFFSET expressions with ExecEvalExprSwitchContext, notTom Lane2001-08-06
| | | | ExecEvalExpr, to avoid possible memory leak.
* Do not pre-expand localedir as substituted in the makefile, so that 'makePeter Eisentraut2001-08-06
| | | | install prefix=elsewhere' works.
* update from upstreamPeter Eisentraut2001-08-06
|
* Check that the data directory does not have group or world access; removePeter Eisentraut2001-08-06
| | | | a similar check on postgresql.conf.
* Add QueryIsRule gram.y reset.Bruce Momjian2001-08-06
|
* Surely the pg_stat interrogation functions must not be marked proiscachable.Tom Lane2001-08-06
|
* Show index predicate when doing \d on a partial index.Tom Lane2001-08-05
|
* Endeavor to make pgstats buffer process (a) safe and (b) useful.Tom Lane2001-08-05
| | | | | | | | 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.
* Remove no-longer-needed fcntl call (I'm not sure it *ever* did anythingTom Lane2001-08-05
| | | | useful, in fact).
* Back out LOCK A,B,C patch at Tom's suggestion.Bruce Momjian2001-08-04
|
* Compile fix for jdbc1.Bruce Momjian2001-08-04
|
* This patch is because Hurd does not support NOFILE. It is against currentBruce Momjian2001-08-04
| | | | | | | | | | | | cvs. The Debian bug report says, "The upstream source makes use of NOFILE unconditionalized. As the Hurd doesn't have an arbitrary limit on the number of open files, this is not defined. But _SC_OPEN_MAX works fine and returns 1024 (applications can increase this as they want), so I suggest the below diff. Please forward this upstream, too." Oliver Elphick
* This patch adds the following to the FTI module:Bruce Momjian2001-08-04
| | | | | | | | | | | | | | | | | | | | | | * The ability to index more than one column in a table with a single trigger. * All uses of sprintf changed to snprintf to prevent users from crashing Postgres. * Error messages made more consistent * Some changes made to bring it into line with coding requirements for triggers specified in the docs. (ie. check you're a trigger before casting your context) * The perl script that generate indices has been updated to support indexing multiple columns in a table. * Fairly well tested in our development environment indexing a food database's brand and description fields. The size of the fti index is around 300,000 rows. * All docs and examples upgraded. This includes specifying more efficient index usage that was specified before, better examples that don't produce duplicates, etc. Christopher Kings-Lynne & Brett
* Add LOCK A,B,C functionality as LOCK A;LOCK B;LOCK C; as agreed.Bruce Momjian2001-08-04
| | | | Neil Padgett