Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Arrange to call localtime() during postmaster startup. On most Unixen, | Tom Lane | 2002-02-19 | |
| | | | | | | the first call of localtime() in a process will read /usr/lib/tztab or local equivalent. Better to do this once in the postmaster and inherit the data by fork() than to have to do it during every backend start. | |||
* | Avoid calling pq_flush just after sending AUTH_REQ_OK; this saves one | Tom Lane | 2002-02-19 | |
| | | | | send() and probable process context swap during backend startup. | |||
* | Privileges on functions and procedural languages | Peter Eisentraut | 2002-02-18 | |
| | ||||
* | Replace number-of-distinct-values estimator equation, per recent | Tom Lane | 2002-02-18 | |
| | | | | pghackers discussion. | |||
* | Remove MAX/MIN() macros, use c.h Max/Min() instead. | Bruce Momjian | 2002-02-18 | |
| | ||||
* | Disable LIMIT #,# syntax, as agreed to months ago. Print message saying | Bruce Momjian | 2002-02-18 | |
| | | | | to use separate LIMIT/OFFSET clauses. | |||
* | Reorder postgresql.conf WAL section to be clearer. | Bruce Momjian | 2002-02-18 | |
| | ||||
* | Don't mention TIOGA in Makefile and move strdup.c rule into proper | Bruce Momjian | 2002-02-18 | |
| | | | | 'ifdef' in Makefile. | |||
* | Add code to preserve paren level display after \g, as submitted months ago. | Bruce Momjian | 2002-02-18 | |
| | ||||
* | Remove compile warnings in multibute mode. | Hiroshi Inoue | 2002-02-18 | |
| | ||||
* | Fix param handling of create* admin scripts as described months ago. | Bruce Momjian | 2002-02-18 | |
| | | | | Properly handles default values. | |||
* | Add better error text: | Bruce Momjian | 2002-02-18 | |
| | | | | | 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 | |
| | ||||
* | Fix kanji-coversion key binding. This has been broken since 7.1 | Tatsuo Ishii | 2002-02-18 | |
| | | | | Per Yoshinori Ariie's report. | |||
* | The version is now 7.01.0010. | Hiroshi Inoue | 2002-02-18 | |
| | | | | | | | | | | | | | | | | | | | | | | | 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 | |
| | ||||
* | Add files for ODBC3.0 support. | Hiroshi Inoue | 2002-02-18 | |
| | ||||
* | Remove ODBC todo, add to main TODO. | Bruce Momjian | 2002-02-18 | |
| | ||||
* | Remove warning about automatic inclusion of sqlca. | Peter Eisentraut | 2002-02-15 | |
| | ||||
* | Ensure that a cursor is scanned under the same scanCommandId it was | Tom Lane | 2002-02-14 | |
| | | | | | | 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. | |||
* | Use RTLD_NOW, not RTLD_LAZY, as binding mode for dlopen() on all platforms. | Tom Lane | 2002-02-12 | |
| | | | | | | | 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. | |||
* | Modify COPY TO to emit carriage returns and newlines as backslash escapes | Tom Lane | 2002-02-12 | |
| | | | | | | | | (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. | |||
* | Tweak GiST code to work correctly on machines where 8-byte alignment | Tom Lane | 2002-02-11 | |
| | | | | | | 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 | |
| | ||||
* | Repair problems with EvalPlanQual where target table is scanned as | Tom Lane | 2002-02-11 | |
| | | | | | | | 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. | |||
* | Be more wary about mixed-case database names and user names. Get | Tom Lane | 2002-02-11 | |
| | | | | the CREATE DATABASE command right in pg_dump -C case. | |||
* | Don't Assert() that fsync() and close() never fail; I have seen this | Tom Lane | 2002-02-10 | |
| | | | | | 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 | |
| | ||||
* | pgstat's truncation of query string needs to be multibyte-aware. | Tom Lane | 2002-02-07 | |
| | | | | Patch from sugita@sra.co.jp. | |||
* | Removed a check for REINDEX TABLE. | Hiroshi Inoue | 2002-02-07 | |
| | ||||
* | Fix failure to reconnect as sequence's owner before issuing setval(). | Tom Lane | 2002-02-06 | |
| | ||||
* | Update Win32-world version number of libpq++. | Peter Eisentraut | 2002-01-30 | |
| | ||||
* | Add cast to suppress gcc warning on Darwin platform. | Tom Lane | 2002-01-30 | |
| | ||||
* | update | Peter Eisentraut | 2002-01-29 | |
| | ||||
* | Make S/390 TAS spell __inline__ the same way as the other eight GCC | Tom Lane | 2002-01-29 | |
| | | | | inline routines do. | |||
* | Updates from Serguei Mokhov | Peter Eisentraut | 2002-01-26 | |
| | ||||
* | Tweak pg_dump to say GRANT ALL when appropriate, rather than enumerating | Tom Lane | 2002-01-25 | |
| | | | | | | the individual privilege bits. I regard this as an important change for cross-version compatibility: without this, a 7.1 dump loaded into 7.2 is likely to be short a few privileges. | |||
* | Tweak plperl.c to compile against threaded Perls, per report from | Tom Lane | 2002-01-24 | |
| | | | | cturner@redhat.com. | |||
* | pltcl's spi_execp didn't handle NULL arguments quite correctly. | Tom Lane | 2002-01-24 | |
| | | | | | It would try to call the input conversion routines for them anyway. So, a valid input string for the datatype had to be supplied. | |||
* | Fix incorrect test for whether Perl code is returning undef. This | Tom Lane | 2002-01-24 | |
| | | | | allows plperl routines to return NULL as intended. | |||
* | Fix logic error in insert_fsm_page_entry: because compact_fsm_page_list | Tom Lane | 2002-01-24 | |
| | | | | | | | removes any empty chunks, the chunk previously added won't be there anymore, so it's possible there is zero free space in the rel's page list afterwards. Must loop back and rerun the part that adds a chunk to the list. | |||
* | Remove long-obsolete version of pltcl documentation. | Tom Lane | 2002-01-23 | |
| | ||||
* | Clean up Red Hat Tcl RPM brain-damage in a more reliable way: fix the | Tom Lane | 2002-01-23 | |
| | | | | | value of TCL_SHLIB_LD in the shell script that creates Makefile.tcldefs, rather than trying to persude gmake to do it. | |||
* | Added patch to temporarily disable locale for descriptors too (Christof) | Michael Meskes | 2002-01-23 | |
| | ||||
* | libpq++/pgconnection.h must not include postgres_fe.h, else it fails to | Tom Lane | 2002-01-22 | |
| | | | | | | compile in client apps that use the standard installed header set. To allow removing that include, move DLLIMPORT definitions out of c.h and into the appropriate port-specific header files. | |||
* | Suppress bogus soname switch that RedHat RPMs put into tclConfig.sh. | Tom Lane | 2002-01-21 | |
| | ||||
* | Add IN/EXISTS file. | Bruce Momjian | 2002-01-20 | |
| | ||||
* | Update from Kova'cs Zolta'n | Peter Eisentraut | 2002-01-18 | |
| | ||||
* | You might want to run pg_indent on pg_backup_db.c however ... | Bruce Momjian | 2002-01-18 | |
| | | | | tom lane | |||
* | Fixes to getImportedKeys/getExportedKeys from Jason Davies | Dave Cramer | 2002-01-18 | |
| | | | | Previous versions did not correctly identify primary/foreign keys |