| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Disable LIMIT #,# syntax, as agreed to months ago. Print message saying | Bruce Momjian | 2002-02-18 | 1 | -6/+4 |
| | | | | | to use separate LIMIT/OFFSET clauses. | ||||
| * | Reorder postgresql.conf WAL section to be clearer. | Bruce Momjian | 2002-02-18 | 1 | -24/+28 |
| | | |||||
| * | Don't mention TIOGA in Makefile and move strdup.c rule into proper | Bruce Momjian | 2002-02-18 | 2 | -10/+4 |
| | | | | | 'ifdef' in Makefile. | ||||
| * | Add code to preserve paren level display after \g, as submitted months ago. | Bruce Momjian | 2002-02-18 | 1 | -3/+5 |
| | | |||||
| * | Remove compile warnings in multibute mode. | Hiroshi Inoue | 2002-02-18 | 2 | -3/+3 |
| | | |||||
| * | Fix param handling of create* admin scripts as described months ago. | Bruce Momjian | 2002-02-18 | 8 | -17/+56 |
| | | | | | Properly handles default values. | ||||
| * | Remove CHECKPOINT call from pgbench -- Not needed and affects performance. | Bruce Momjian | 2002-02-18 | 1 | -11/+1 |
| | | |||||
| * | Add better error text: | Bruce Momjian | 2002-02-18 | 1 | -2/+2 |
| | | | | | | elog(LOG, "XLogWrite: new log file created - " "consider increasing 'wal_files' in postgresql.conf."); | ||||
| * | Add HTML output option to pgcvslog. | Bruce Momjian | 2002-02-18 | 1 | -14/+70 |
| | | |||||
| * | Update FAQ. | Bruce Momjian | 2002-02-18 | 2 | -21/+21 |
| | | |||||
| * | Fix kanji-coversion key binding. This has been broken since 7.1 | Tatsuo Ishii | 2002-02-18 | 1 | -2/+2 |
| | | | | | Per Yoshinori Ariie's report. | ||||
| * | Add Neil's Name: | Bruce Momjian | 2002-02-18 | 1 | -2/+2 |
| | | | | | > * Have pg_dump use ADD PRIMARY KEY after COPY, for performance (Neil Conway) | ||||
| * | The version is now 7.01.0010. | Hiroshi Inoue | 2002-02-18 | 21 | -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 Inoue | 2002-02-18 | 1 | -0/+351 |
| | | |||||
| * | Add: | Bruce Momjian | 2002-02-18 | 1 | -1/+2 |
| | | | | | > * Have pg_dump use ADD PRIMARY KEY after COPY, for performance | ||||
| * | Add files for ODBC3.0 support. | Hiroshi Inoue | 2002-02-18 | 3 | -0/+618 |
| | | |||||
| * | Added: | Bruce Momjian | 2002-02-18 | 1 | -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 Momjian | 2002-02-18 | 1 | -16/+0 |
| | | |||||
| * | Fix SGML typo in previous patch. | Bruce Momjian | 2002-02-17 | 1 | -2/+1 |
| | | |||||
| * | I think it's important that it's actually documented that they can add | Bruce Momjian | 2002-02-17 | 1 | -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 Momjian | 2002-02-16 | 1 | -8/+8 |
| | | | | | e.g. table contraint definition -> table_constraint_definition. | ||||
| * | Remove warning about automatic inclusion of sqlca. | Peter Eisentraut | 2002-02-15 | 1 | -6/+1 |
| | | |||||
| * | Update FAQ. | Bruce Momjian | 2002-02-14 | 2 | -71/+54 |
| | | |||||
| * | Ensure that a cursor is scanned under the same scanCommandId it was | Tom Lane | 2002-02-14 | 4 | -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. This | Tom Lane | 2002-02-13 | 1 | -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 Momjian | 2002-02-13 | 1 | -5/+96 |
| | | |||||
| * | Use RTLD_NOW, not RTLD_LAZY, as binding mode for dlopen() on all platforms. | Tom Lane | 2002-02-12 | 17 | -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 Lane | 2002-02-12 | 1 | -3/+6 |
| | | |||||
| * | Fix tutorial for references problem, from rainer.tammer@spg.schulergroup.com | Bruce Momjian | 2002-02-12 | 1 | -3/+3 |
| | | |||||
| * | Clarify working in 'top x items using sequential scan' item | Bruce Momjian | 2002-02-12 | 1 | -1/+2 |
| | | |||||
| * | Modify COPY TO to emit carriage returns and newlines as backslash escapes | Tom Lane | 2002-02-12 | 2 | -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 Momjian | 2002-02-12 | 2 | -10/+9 |
| | | |||||
| * | Update FAQ. | Bruce Momjian | 2002-02-12 | 2 | -2/+23 |
| | | |||||
| * | Update wal files computation documentation. | Bruce Momjian | 2002-02-11 | 1 | -38/+41 |
| | | |||||
| * | Tweak GiST code to work correctly on machines where 8-byte alignment | Tom Lane | 2002-02-11 | 1 | -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_GLOBAL | Peter Eisentraut | 2002-02-11 | 1 | -1/+6 |
| | | |||||
| * | Repair problems with EvalPlanQual where target table is scanned as | Tom Lane | 2002-02-11 | 2 | -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 Momjian | 2002-02-11 | 1 | -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 Momjian | 2002-02-11 | 1 | -4/+4 |
| | | |||||
| * | Be more wary about mixed-case database names and user names. Get | Tom Lane | 2002-02-11 | 6 | -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 restore | Tom Lane | 2002-02-11 | 2 | -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 this | Tom Lane | 2002-02-10 | 1 | -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 Momjian | 2002-02-08 | 1 | -2/+2 |
| | | |||||
| * | Upgrade my2pg version 1.23. | Bruce Momjian | 2002-02-08 | 1 | -10/+14 |
| | | |||||
| * | Oops, already completed: | Bruce Momjian | 2002-02-08 | 1 | -2/+1 |
| | | | | | < * Have checkpoint process identify itself via ps status display | ||||
| * | Added: | Bruce Momjian | 2002-02-08 | 1 | -1/+2 |
| | | | | | > * Have checkpoint process identify itself via ps status display | ||||
| * | pgstat's truncation of query string needs to be multibyte-aware. | Tom Lane | 2002-02-07 | 1 | -1/+8 |
| | | | | | Patch from sugita@sra.co.jp. | ||||
| * | Repair some problems in GIST-index contrib modules. Patch from | Tom Lane | 2002-02-07 | 4 | -33/+39 |
| | | | | | Teodor Sigaev <teodor@stack.net>. | ||||
| * | Removed a check for REINDEX TABLE. | Hiroshi Inoue | 2002-02-07 | 1 | -10/+1 |
| | | |||||
| * | Fix for parallel make | Peter Eisentraut | 2002-02-06 | 1 | -4/+6 |
| | | |||||
