aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Fix for EINTR returns from Win9X socket operations:Bruce Momjian2002-04-15
| | | | | | | | | | | | | | In summary, if a software writer implements timer events or other events which generate a signal with a timing fast enough to occur while libpq is inside connect(), then connect returns -EINTR. The code following the connect call does not handle this and generates an error message. The sum result is that the pg_connect() fails. If the timer or other event is right on the window of the connect() completion time, the pg_connect() may appear to work sporadically. If the event is too slow, pg_connect() will appear to always work and if the event is too fast, pg_connect() will always fail. David Ford
* Adjust rules for search_path so that pg_catalog is never implicitlyTom Lane2002-04-15
| | | | | | selected as the creation target namespace; to make that happen, you must explicitly set search_path that way. This makes initdb a hair more complex but seems like a good safety feature.
* Update as completed:Bruce Momjian2002-04-15
| | | | > * -Allow oid to act as a foreign key
* Fix text_substr bug intrduced in 7.3 developmentTatsuo Ishii2002-04-15
| | | | | using Joe Conway's patches (submitted at pgsql-patches on 2002/04/08) + small fix.
* Fix oversight in recent change of representation for JOIN aliasTom Lane2002-04-15
| | | | | variables: JOIN/ON should allow references to contained JOINs. Per bug report from Barry Lind.
* The contents of command.c, creatinh.c, define.c, remove.c and rename.cTom Lane2002-04-15
| | | | | | | | | | | | | | | have been divided according to the type of object manipulated - so ALTER TABLE code is in tablecmds.c, aggregate commands in aggregatecmds.c and so on. A few common support routines remain in define.c (prototypes in src/include/commands/defrem.h). No code has been changed except for includes to reflect the new files. The prototypes for aggregatecmds.c, functioncmds.c, operatorcmds.c, and typecmds.c remain in src/include/commands/defrem.h. From John Gray <jgray@azuli.co.uk>
* 1) Fix a bug about reporting varchar info thanks to Aceto.Hiroshi Inoue2002-04-15
| | | | | 2) Introcuced 3 drivers. 3) The version is now 7.02.0001.
* Add bitmap email to archive.Bruce Momjian2002-04-14
|
* Allow detection of collateindex.pl in stylesheet directory or in path,Peter Eisentraut2002-04-14
| | | | | | | | | which covers some recent installation schemes. Add Mandrake installation layout to directories to check for stylesheets. Allow documentation build to proceed if stylesheets were not found, in case the stylesheets might be found through the SGML catalog mechanism.
* Update;Bruce Momjian2002-04-14
| | | | > without using PL/PgSQL EXECUTE, needs cached plan invalidation
* Fix comment dashes.Bruce Momjian2002-04-14
|
* - Synced preproc.y with gram.yMichael Meskes2002-04-14
| | | | - Fixed one bug in structure handling resulting in using sizeof indicator instead of variable.
* Fix broken SGML tag.Tatsuo Ishii2002-04-14
|
* Rod's patch does what it is supposed to do, but it also includesBruce Momjian2002-04-13
| | | | | | | | | | | | | | | | | | | | some old code to add PK constraints to CREATE TABLE. That stuff had been removed as part of my original patch for pg_dump a little while ago. The attached patch fixes this by removing (again :-) ) the code in dumpTables() to perform PK creation during CREATE TABLE. I briefly tested it locally and it fixes both of Tom's test cases. Please apply. Cheers, Neil -- Neil Conway <neilconway@rogers.com>
* Patch against 7.2.1 sources. Uses Solaris Intimate Shared MemoryBruce Momjian2002-04-13
| | | | | | | | | | | | | | | for Solaris on SPARC. Scott Brunza (sbrunza@sonalysts.com) gets credit for identifying the issue, making the change, and doing the regression tests. Earlier testing on 7.2rc2 and 7.2 showed performance gains of 1% to 10% on pgbench, osdb-pg, and some locally developed apps. Solaris Intimate Shared Memory is described in "SOLARIS INTERNALS Core Kernel Components" by Jim Mauro and Richard McDougall, Copyright 2001 Sun Microsystem, Inc. ISBN 0-13-022496-0 P.J. "Josh" Rovero
* Update/correct inheritance examples.Tom Lane2002-04-13
|
* This is a proposed patch to doc/src/sgml/libpgtcl.sgml which documentsBruce Momjian2002-04-13
| | | | | | | | | the libpgtcl "pg_execute" command. This was mentioned on pgsql-interfaces on Mar 3. I am posting it here in the hope that someone will check to see if it makes sense and is correct SGML-wise. I did run it through jade, but this is my first try at this sort of thing. ljb
* Add:Bruce Momjian2002-04-13
| | | | > * Change NUMERIC to enforce the maximum precision, and increase it
* Mention precision of NUMERIC in docs.Bruce Momjian2002-04-13
|
* Add:Bruce Momjian2002-04-13
| | | | > * Change NUMERIC data type to use base 10,000 internally
* Checking to decide whether relations are system relations now dependsTom Lane2002-04-12
| | | | | on the namespace not the name; pg_ is not a reserved prefix for table names anymore. From Fernando Nasser.
* Tweak error message wording.Tom Lane2002-04-12
|
* Allow prompting of create/drop user to handle spaces.Bruce Momjian2002-04-12
|
* Allow dropdb and others to use identifiers with spaces; IFS cleanup forBruce Momjian2002-04-12
| | | | pg_dumpall.
* Update new Russian FAQ.Bruce Momjian2002-04-12
|
* 1) Fix a bug in declare/fetch mode.Hiroshi Inoue2002-04-12
| | | | 2) Suppress some error logs for the request to other drivers.
* Add mention of function CREATE INDEX usage.Bruce Momjian2002-04-11
|
* Cleanup in use of IFS.Bruce Momjian2002-04-11
|
* Update obsolete syntax in example of inheritance.Tom Lane2002-04-11
|
* Make sure leading/trailing/multiple consecutive space/tab in db/user/groupBruce Momjian2002-04-11
| | | | names are handled OK.
* Restructure representation of aggregate functions so that they have pg_procTom Lane2002-04-11
| | | | | | | | | | entries, per pghackers discussion. This fixes aggregates to live in namespaces, and also simplifies/speeds up lookup in parse_func.c. Also, add a 'proimplicit' flag to pg_proc that controls whether a type coercion function may be invoked implicitly, or only explicitly. The current settings of these flags are more permissive than I would like, but we will need to debate and refine the behavior; for now, I avoided breaking regression tests as much as I could.
* Fix pg_upgrade to handle dbnames, user/group names with spaces.Bruce Momjian2002-04-11
|
* Make sure that usesuper is always accessed through superuser(), so that thePeter Eisentraut2002-04-11
| | | | single-user escape path always works.
* Fix problem with invalid database name assignment in while loop.Bruce Momjian2002-04-11
| | | | Properly warn of invalid pg_dumpall options; minor quoting cleanups.
* Readline and Zlib now required by default. Add options --without-readlinePeter Eisentraut2002-04-10
| | | | and --without-zlib to turn them off.
* Add make install-strip target.Peter Eisentraut2002-04-10
|
* Prevent an infinite loop of error reporting.Hiroshi Inoue2002-04-10
|
* Functions live in namespaces. Qualified function names work, egTom Lane2002-04-09
| | | | | SELECT schema1.func2(...). Aggregate names can be qualified at the syntactic level, but the qualification is ignored for the moment.
* Update pg_upgrade for 7.3.Bruce Momjian2002-04-09
|
* Point to developers site, not my hostname.Bruce Momjian2002-04-09
|
* Update FAQ.Bruce Momjian2002-04-09
|
* Update:Bruce Momjian2002-04-09
| | | | > o Fix PL/pgSQL RENAME to work on variables other than OLD/NEW
* Remove TODO.detail domain file.Bruce Momjian2002-04-09
|
* Remove TODO.detail domain file:Bruce Momjian2002-04-09
| | | | | < * -Add domain capability [domain] (Rod Taylor) > * -Add domain capability (Rod Taylor)
* Added:Bruce Momjian2002-04-09
| | | | | > * Add Intimate Shared Memory(ISM) for Solaris > * Add documentation to lock shared memory into RAM for each OS, if possible
* Let psqlodbc30 be compilable without /D DRIVER_CURSOR_IMPLEMENT.Hiroshi Inoue2002-04-09
|
* Add:Bruce Momjian2002-04-09
| | | | > o Fix PL/pgSQL RENAME to work on on variable names
* Update FAQ.Bruce Momjian2002-04-09
|
* More cleanups of cursor text.Bruce Momjian2002-04-09
|
* Fix markup problem with recent change.Bruce Momjian2002-04-09
|