summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Disable LIMIT #,# syntax, as agreed to months ago. Print message sayingBruce Momjian2002-02-181-6/+4
| | | | to use separate LIMIT/OFFSET clauses.
* Reorder postgresql.conf WAL section to be clearer.Bruce Momjian2002-02-181-24/+28
|
* Don't mention TIOGA in Makefile and move strdup.c rule into properBruce Momjian2002-02-182-10/+4
| | | | 'ifdef' in Makefile.
* Add code to preserve paren level display after \g, as submitted months ago.Bruce Momjian2002-02-181-3/+5
|
* Remove compile warnings in multibute mode.Hiroshi Inoue2002-02-182-3/+3
|
* Fix param handling of create* admin scripts as described months ago.Bruce Momjian2002-02-188-17/+56
| | | | Properly handles default values.
* Remove CHECKPOINT call from pgbench -- Not needed and affects performance.Bruce Momjian2002-02-181-11/+1
|
* Add better error text:Bruce Momjian2002-02-181-2/+2
| | | | | elog(LOG, "XLogWrite: new log file created - " "consider increasing 'wal_files' in postgresql.conf.");
* Add HTML output option to pgcvslog.Bruce Momjian2002-02-181-14/+70
|
* Update FAQ.Bruce Momjian2002-02-182-21/+21
|
* Fix kanji-coversion key binding. This has been broken since 7.1Tatsuo Ishii2002-02-181-2/+2
| | | | Per Yoshinori Ariie's report.
* Add Neil's Name:Bruce Momjian2002-02-181-2/+2
| | | | > * Have pg_dump use ADD PRIMARY KEY after COPY, for performance (Neil Conway)
* The version is now 7.01.0010.Hiroshi Inoue2002-02-1821-600/+1263
| | | | | | | | | | | | | | | | | | | | | | | 1) Handle parameter array. 2) Allow re-use of the connection handle after SQLDisconnect. 3) Reject NULL if no indicator specified. 4) Improve the handling of '_' in table name. 5) Unify internal begin/commit/abort operations. 6) Change SQLTables() to return null not "" for the table_owner. 7) Fix a bug about parameter handling reported by Benoit Menendez. 8) Add cast in handling ODBC date/time escape sequences. 9) Fix a bug about cache_size handing in declare/fetch mode. [ODBC3.0 related] 10) Improve the handling of descriptor handles(ODBC3.0). 11) Improve the type handling of some types for ODBC3.0. [Thanks to Marcelo Aceto for his useful patches] 12) Allow nested ODBC escape. 13) Allow changing autocommit on/off inside the transaction block. 14) Improve the handling of ODBC scalar functions.
* Separate info30.c from info.c.Hiroshi Inoue2002-02-181-0/+351
|
* Add:Bruce Momjian2002-02-181-1/+2
| | | | > * Have pg_dump use ADD PRIMARY KEY after COPY, for performance
* Add files for ODBC3.0 support.Hiroshi Inoue2002-02-183-0/+618
|
* Added:Bruce Momjian2002-02-181-1/+6
| | | | | | | > * ODBC > o ODBC 3.0 support > o Unicode(UCS-2) support > o Updatable cursors support
* Remove ODBC todo, add to main TODO.Bruce Momjian2002-02-181-16/+0
|
* Fix SGML typo in previous patch.Bruce Momjian2002-02-171-2/+1
|
* I think it's important that it's actually documented that they can addBruce Momjian2002-02-171-1/+10
| | | | | | | | | | | primary keys after the fact! Also, we need to add regression tests for alter table / add primary key and alter table / drop constraint. These shouldn't be added until 7.3 tho methinks... Chris
* Clarify params to ALTER TABLE to clearly show single parameters.Bruce Momjian2002-02-161-8/+8
| | | | e.g. table contraint definition -> table_constraint_definition.
* Remove warning about automatic inclusion of sqlca.Peter Eisentraut2002-02-151-6/+1
|
* Update FAQ.Bruce Momjian2002-02-142-71/+54
|
* Ensure that a cursor is scanned under the same scanCommandId it wasTom Lane2002-02-144-13/+48
| | | | | | originally created with, so that the set of visible tuples does not change as a result of other activity. This essentially makes PG cursors INSENSITIVE per the SQL92 definition. See bug report of 13-Feb-02.
* Point out that --adduser actually makes the new user a superuser. ThisTom Lane2002-02-131-12/+24
| | | | | was mentioned on the man page for the underlying CREATE USER command, but it should be explained here too.
* Add DROP COLUMN status from Hiroshi.Bruce Momjian2002-02-131-5/+96
|
* Use RTLD_NOW, not RTLD_LAZY, as binding mode for dlopen() on all platforms.Tom Lane2002-02-1217-79/+266
| | | | | | | This restores the Linux behavior to what it was in PG 7.0 and 7.1, and causes other platforms to agree. (Other well-tested platforms like HPUX were doing it this way already.) Per pghackers discussion over the past month or so.
* Add warning not to use /usr/ucb/cc on Solaris.Tom Lane2002-02-121-3/+6
|
* Fix tutorial for references problem, from rainer.tammer@spg.schulergroup.comBruce Momjian2002-02-121-3/+3
|
* Clarify working in 'top x items using sequential scan' itemBruce Momjian2002-02-121-1/+2
|
* Modify COPY TO to emit carriage returns and newlines as backslash escapesTom Lane2002-02-122-77/+165
| | | | | | | | (backslash-r, backslash-n) for protection against newline-conversion munging. In future we will also tweak COPY FROM, but this part of the change should be backwards-compatible. Per pghackers discussion. Also, update COPY reference page to describe the backslash conversions more completely and accurately.
* Update FAQ.Bruce Momjian2002-02-122-10/+9
|
* Update FAQ.Bruce Momjian2002-02-122-2/+23
|
* Update wal files computation documentation.Bruce Momjian2002-02-111-38/+41
|
* Tweak GiST code to work correctly on machines where 8-byte alignmentTom Lane2002-02-111-14/+28
| | | | | | of pointers is required. Patch from Teodor Sigaev per pghackers discussion. It's an ugly kluge but avoids forcing initdb; we'll put a better fix into 7.3 or later.
* Fix for old FreeBSD versions that don't have RTLD_GLOBALPeter Eisentraut2002-02-111-1/+6
|
* Repair problems with EvalPlanQual where target table is scanned asTom Lane2002-02-112-47/+64
| | | | | | | inner indexscan (ie, one with runtime keys). ExecIndexReScan must compute or recompute runtime keys even if we are rescanning in the EPQ case. TidScan seems to have comparable problems. Per bug noted by Barry Lind 11-Feb-02.
* Fix typo.Bruce Momjian2002-02-111-2/+2
| | | | | | < o prevent lose of indexes, permissions, inheritance (Bruce) --- > o prevent loss of indexes, permissions, inheritance (Bruce)
* Fix flag handling of pg_upgrade.Bruce Momjian2002-02-111-4/+4
|
* Be more wary about mixed-case database names and user names. GetTom Lane2002-02-116-94/+131
| | | | the CREATE DATABASE command right in pg_dump -C case.
* pg_dump and pg_restore man pages need to mention that one should restoreTom Lane2002-02-112-5/+30
| | | | | into a virgin database, ie, one created from template0, if there are any site-local additions in template1.
* Don't Assert() that fsync() and close() never fail; I have seen thisTom Lane2002-02-101-23/+30
| | | | | crash on Solaris when over disk quota. Instead, report such failures via elog(DEBUG).
* Move sys/types.h to top, for hiroyuki hanai/ FreeBSD.Bruce Momjian2002-02-081-2/+2
|
* Upgrade my2pg version 1.23.Bruce Momjian2002-02-081-10/+14
|
* Oops, already completed:Bruce Momjian2002-02-081-2/+1
| | | | < * Have checkpoint process identify itself via ps status display
* Added:Bruce Momjian2002-02-081-1/+2
| | | | > * Have checkpoint process identify itself via ps status display
* pgstat's truncation of query string needs to be multibyte-aware.Tom Lane2002-02-071-1/+8
| | | | Patch from sugita@sra.co.jp.
* Repair some problems in GIST-index contrib modules. Patch fromTom Lane2002-02-074-33/+39
| | | | Teodor Sigaev <teodor@stack.net>.
* Removed a check for REINDEX TABLE.Hiroshi Inoue2002-02-071-10/+1
|
* Fix for parallel makePeter Eisentraut2002-02-061-4/+6
|