summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Code review for improved-hashing patch. Fix some portability issuesTom Lane2002-03-0911-190/+114
| | | | | (char != unsigned char, Datum != uint32); make use of new hash code in dynahash hash tables and hash joins.
* Here is a small patch that cleans up some error reporting in the JDBC ↵Dave Cramer2002-03-092-9/+11
| | | | driver. PSQLExceptions are thrown instead of SQLExceptions and if a warning is received while waiting for the backend secret key, that warning is chained to the new Connection object instead of generating an exception. A couple new error messages have been added.
* Wording improvements to runtime.sgml. Add mention in postgresql.confBruce Momjian2002-03-092-590/+584
| | | | | file that SIGHUP or "pg_ctl reload" are required for changes to take affect on a running server.
* Improve wording of pg_hba.conf file.Bruce Momjian2002-03-081-86/+97
|
* Remove compile errors.Hiroshi Inoue2002-03-082-0/+5
|
* 1) Implement SQLParamOptions().Hiroshi Inoue2002-03-0843-1395/+3862
| | | | | | | | | | | | | 2) Handle Multiple results and implement SQLMoreResult(). 3) Improve multibyte handling thanks to Eiji Tokuya. 4) Add new options. LF <-> CR/LF converion. TRUE is -1 (for VB). 5) Introduce unicode(UCS-2) support. 6) Reduce the length of connection strings. 7) Improve SQLError, SQLGetDiagRec(ODBC 3.0). 8) Implement SQLTablePrivileges(). 9) Miscellaneous changes for ODBC 3.0 support.
* analyze.o need not depend on parser.h.Tom Lane2002-03-081-2/+2
|
* Remove unnecessary inclusion.Tom Lane2002-03-081-2/+1
|
* Fix copying/equality-check bugs in GrantStmt and ConstraintsSetStmt,Tom Lane2002-03-085-618/+586
| | | | | per reports from Fernando Nasser. Also, rearrange order of declarations in parsenodes.h as suggested by Fernando.
* Remove async TODO.detail file.Bruce Momjian2002-03-081-253/+0
|
* Update TODO items that are completed.Bruce Momjian2002-03-081-11/+12
|
* TODO item done:Bruce Momjian2002-03-082-5/+4
| | | | * Change FIXED_CHAR_SEL to 0.20 from 0.04 to give better selectivity (Bruce)
* Mark as done:Bruce Momjian2002-03-081-2/+2
| | | | > * -Change DEBUG startup tag to LOG (Bruce)
* AddBruce Momjian2002-03-081-2/+2
| | | | > * Prevent aggregates from being used in rule WHERE clauses
* Add missing colon to getopt() arg.Tom Lane2002-03-081-2/+2
|
* Add FULL in VACUUM psql completion.Bruce Momjian2002-03-071-4/+3
|
* Adjust elog() tags so source and regression tests match.Bruce Momjian2002-03-073-8/+8
|
* Back out psql domain improvements until domain is applied.Bruce Momjian2002-03-074-60/+4
|
* Back out domain patch until it works properly.Bruce Momjian2002-03-0732-1654/+270
|
* Also an small change to the tab-complete feature of psql which allows toBruce Momjian2002-03-071-2/+2
| | | | | | use tables and views interchangeably. Manuel Sugawara
* Fix syntax error introduced by patch.Bruce Momjian2002-03-061-31/+1
|
* I've attached a patch which implements Bob Jenkin's hash function forBruce Momjian2002-03-0610-97/+127
| | | | | | | | | | | | | | | | | | | PostgreSQL. This hash function replaces the one used by hash indexes and the catalog cache. Hash joins use a different, relatively poor-quality hash function, but I'll fix that later. As suggested by Tom Lane, this patch also changes the size of the fixed hash table used by the catalog cache to be a power-of-2 (instead of a prime: I chose 256 instead of 257). This allows the catcache to lookup hash buckets using a simple bitmask. This should improve the performance of the catalog cache slightly, since the previous method (modulo a prime) was slow. In my tests, this improves the performance of hash indexes by between 4% and 8%; the performance when using btree indexes or seqscans is basically unchanged. Neil Conway <neilconway@rogers.com>
* Enable ALTER TABLE ADD PRIMARY KEY for pg_dump, for performance reasonsBruce Momjian2002-03-061-42/+13
| | | | | | | | | | | so index is not on table during COPY. > > AFAICT, the patch I posted to -patches a little while to enable the > > usage of ALTER TABLE ADD PRIMARY KEY by pg_dump hasn't been applied, nor > > is it in the unapplied patches list. I was under the impression that > > this was in the queue for application -- did it just get lost? Neil Conway <neilconway@rogers.com>
* alter table doc cleanups.Bruce Momjian2002-03-061-4/+4
| | | | Neil Conway
* This simple patch fixes broken Makefile, broken ApplySnapshot andBruce Momjian2002-03-067-3/+15
| | | | | | | makes all utilities honour --verbose command line option. -- Yours, Alexey V. Borzov, Webmaster of RDW.ru
* Here is a diff of changes to the psql source code implementing a simpleBruce Momjian2002-03-064-4/+60
| | | | | | | 'list domains' command '\dD'. This is the interface component of rbt@zort.ca's domain backend modifications. Jonathan Eisler
* Ok. Updated patch attached.Bruce Momjian2002-03-0632-270/+1660
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - domain.patch -> source patch against pgsql in cvs - drop_domain.sgml and create_domain.sgml -> New doc/src/sgml/ref docs - dominfo.txt -> basic domain related queries I used for testing [ ADDED TO /doc] Enables domains of array elements -> CREATE DOMAIN dom int4[3][2]; Uses a typbasetype column to describe the origin of the domain. Copies data to attnotnull rather than processing in execMain(). Some documentation differences from earlier. If this is approved, I'll start working on pg_dump, and a \dD <domain> option in psql, and regression tests. I don't really feel like doing those until the system table structure settles for pg_type. CHECKS when added, will also be copied to to the table attributes. FK Constraints (if I ever figure out how) will be done similarly. Both will lbe handled by MergeDomainAttributes() which is called shortly before MergeAttributes(). Rod Taylor
* Modify ALTER TABLE OWNER to change index ownership; code cleanup.Bruce Momjian2002-03-062-66/+76
| | | | Neil Conway
* Update docs for new stored procedure error levels.Bruce Momjian2002-03-063-26/+28
|
* Add new elog() levels to stored procedure languages. plperl DEBUG hackBruce Momjian2002-03-0610-35/+111
| | | | still needed because only removed in 7.4.
* Add libpgeasy example file.Bruce Momjian2002-03-061-0/+68
|
* Synced parser with backend.Michael Meskes2002-03-062-50/+140
|
* Update reference pages for new INFO, NOTICE, WARNING elog() levels.Bruce Momjian2002-03-0614-44/+44
|
* Update docs for new INFO, NOTICE, WARNING elog() levels.Bruce Momjian2002-03-065-50/+50
|
* Improve elog descriptions.Bruce Momjian2002-03-061-11/+12
|
* Add missing Unicode multibyte files.Bruce Momjian2002-03-0619-0/+113340
|
* Change made to elog:Bruce Momjian2002-03-06110-882/+872
| | | | | | | | | | | | | | | | | | | o Change all current CVS messages of NOTICE to WARNING. We were going to do this just before 7.3 beta but it has to be done now, as you will see below. o Change current INFO messages that should be controlled by client_min_messages to NOTICE. o Force remaining INFO messages, like from EXPLAIN, VACUUM VERBOSE, etc. to always go to the client. o Remove INFO from the client_min_messages options and add NOTICE. Seems we do need three non-ERROR elog levels to handle the various behaviors we need for these messages. Regression passed.
* Add name:Bruce Momjian2002-03-061-2/+2
| | | | > * Improve concurrency of hash indexes (Neil Conway)
* changed Cancel to cancelDave Cramer2002-03-061-1/+1
|
* backed out changes for cancel, no need to look for two 'Z' responsesDave Cramer2002-03-051-17/+1
|
* Patch by Nicolas Verger to correctly propogate SQLWarning to the Statement ↵Dave Cramer2002-03-052-0/+44
| | | | and ResultSet
* fixed cancel query bug introduced by patchDave Cramer2002-03-052-12/+18
|
* Autoconf for jdbc debug changes.Bruce Momjian2002-03-051-2/+2
|
* At this moment, --enable-debug adds debugging information to most of theBruce Momjian2002-03-054-239/+247
| | | | | | | | | | parts o f postgresql. The jdbc drivers are never compiled with debugging support. This p atch make sure that debugging information is added to the jdbc jar when the --en able-debug is added. This was usefull for me for debugging some java jdbc poolin g objects but this might perhaps be usefull for other people too? Dries Verachtert
* Prevent failed passwords from being echoed to server logs, for security.Bruce Momjian2002-03-051-2/+4
|
* Prevent failed passwords from being echoed to server logs, for security.Bruce Momjian2002-03-051-3/+3
|
* Update FAQ.Bruce Momjian2002-03-052-4/+4
|
* This version has been synchonized with English version at Mar 03.Bruce Momjian2002-03-052-1171/+38
| | | | | With best wishes,Victor Vislobokov Perm, Russia
* This trivial patch fixes a typo and improves the phrasing of a sentenceBruce Momjian2002-03-051-3/+3
| | | | | | in the docs. Neil Conway
* Adds \du documentation line for \? in psqls help.cBruce Momjian2002-03-051-1/+2
| | | | | | | Thought I saw a patch earlier converting docs to use []s, so this uses them. Rod Taylor