Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-11-11 | Test program needs to declare MaxBackends, per Bernd Tegge. | Tom Lane | |
2001-11-11 | Defend against brain-dead QNX implementation of qsort(). | Tom Lane | |
Per report from Bernd Tegge, 10-Nov-01. | |||
2001-11-11 | In find_mergeclauses_for_pathkeys, it's okay to return multiple merge | Tom Lane | |
clauses per path key. Indeed, we *must* do so or we will be unable to form a valid plan for FULL JOIN with overlapping join conditions, eg select * from a full join b on a.v1 = b.v1 and a.v2 = b.v2 and a.v1 = b.v2. | |||
2001-11-11 | Fix for compiling libpq++ on Solaris with Sun SPRO6U2. | Bruce Momjian | |
Denis A Ustimenko | |||
2001-11-11 | sort_inner_and_outer needs a check to ensure that it's consumed all the | Tom Lane | |
mergeclauses in RIGHT/FULL join cases, just like the other routines have. I'm not quite sure why I thought it didn't need one --- but Nick Fankhauser's recent bug report proves that it does. | |||
2001-11-11 | Use abbreviated connection string more widely. | Hiroshi Inoue | |
This seems to fix the trouble with PowerBuilder reported by Magbus Weber. | |||
2001-11-11 | Defend against possibility that SSL error reporting mechanism returns | Tom Lane | |
a NULL pointer. Per report from Stephen Pillinger 8-Nov-01. | |||
2001-11-10 | Clean up usage-statistics display code (ShowUsage and friends). StatFp | Tom Lane | |
is gone, usage messages now go through elog(DEBUG). | |||
2001-11-10 | Restructure child-exit logging messages for easier translation, | Tom Lane | |
per suggestion from Peter. | |||
2001-11-10 | Allow TIMESTAMP, VARCHAR, et al to be used as unquoted column names, | Tom Lane | |
though alas not as unquoted function names. De-reserve a bunch of keywords that could have been in ColId rather than ColLabel all along. Per recent proposal in pgsql-patches. | |||
2001-11-09 | Jason Davies patch to getImported/getExported keys | Dave Cramer | |
2001-11-08 | Fix indenting for 'extern "C"' cases. | Bruce Momjian | |
2001-11-08 | Make extern C handling more flexible. | Bruce Momjian | |
2001-11-08 | PostgreSQL works again on Mac OS X 10.1. Hold your nose before | Tom Lane | |
investigating the kluge that makes it so... | |||
2001-11-08 | Add casts to suppress compiler warnings observed on Darwin platform | Tom Lane | |
(surprised no one has reported these yet...) | |||
2001-11-07 | Fix replacement of extern C string. | Bruce Momjian | |
2001-11-07 | Fix typo. | Bruce Momjian | |
2001-11-07 | Prevent indenting of 'extern "C"' blocks. | Bruce Momjian | |
2001-11-07 | Some post pgident run updates, | Bruce Momjian | |
one fuzzy translation fix, some other messages tweaking. Theoretically, should be up-to-date by now. Please apply to /src/interfaces/libpq/ru.po -- Serguei A. Mokhov | |||
2001-11-06 | Update for latest version of horology test.REL7_2_BETA2 | Tom Lane | |
2001-11-06 | Clean up formatting of child process exit-status reports so that they | Tom Lane | |
are correct, consistent, and complete ... motivated by gripe from Oliver Elphick, but I see someone had already made an incomplete stab at this. | |||
2001-11-06 | Fix last (?) problem with sensitivity to daylight savings time status | Thomas G. Lockhart | |
when running the regression test. Reported by Tom Lane. | |||
2001-11-06 | Add British Double Standard Time (BDST) per mailing list report. | Thomas G. Lockhart | |
2001-11-06 | Use PostgreSQL's standard declaration for a 32-bit integer to define | Thomas G. Lockhart | |
the cash data type. | |||
2001-11-06 | Add Darwin to list of known systems for ps_status. | Tom Lane | |
2001-11-06 | The extra semaphore that proc.c now allocates for checkpoint processes | Tom Lane | |
should be accounted for in the PROC_SEM_MAP_ENTRIES() macro. Otherwise the ports that rely on this macro to size data structures are broken. Mea culpa. | |||
2001-11-05 | Fix coredump in plpgsql when trying to return a rowtype result. | Tom Lane | |
Need to return a TupleTableSlot, not just a bare tuple. | |||
2001-11-05 | New pgindent run with fixes suggested by Tom. Patch manually reviewed, | Bruce Momjian | |
initdb/regression tests pass. | |||
2001-11-05 | Preparation for the parameter array handling. | Hiroshi Inoue | |
2001-11-05 | 1) Fix a few bugs about SQLGetData() | Hiroshi Inoue | |
reported by Mika Mantyla. 2) Timestamp precision. 3) Separate ODBC3.0 files. | |||
2001-11-05 | More cleanup for stuff after closing brace in first column. | Bruce Momjian | |
2001-11-05 | Handle tabs after closing brace in first column with less indenting. | Bruce Momjian | |
2001-11-05 | Improve readability of script. | Bruce Momjian | |
2001-11-05 | CREATE TABLE foo (x,y,z) AS SELECT ... can't apply target column names | Tom Lane | |
to the target list in gram.y; it must wait till after expansion of the target list in analyze.c. Per bug report 4-Nov: lx=# CREATE TABLE abc (a char, b char, c char); CREATE lx=# CREATE TABLE xyz (x, y, z) AS SELECT * FROM abc; ERROR: CREATE TABLE/AS SELECT has mismatched column count | |||
2001-11-05 | Remove ill-considered Assert. | Tom Lane | |
2001-11-04 | Pull in variables defined in structs; had too many tabs. | Bruce Momjian | |
2001-11-04 | Fix now-obsolete comment. | Tom Lane | |
2001-11-04 | Version was 3.3 but last released version was 3.1. Setting to match rest | D'Arcy J.M. Cain | |
of the documentation in preparation for upcoming release. | |||
2001-11-04 | Merge three existing ways of signaling postmaster from child processes, | Tom Lane | |
so that only one signal number is used not three. Flags in shared memory tell the reason(s) for the current signal. This method is extensible to handle more signal reasons without chewing up even more signal numbers, but the immediate reason is to keep pg_pwd reloads separate from SIGHUP processing in the postmaster. Also clean up some problems in the postmaster with delayed response to checkpoint status changes --- basically, it wouldn't schedule a checkpoint if it wasn't getting connection requests on a regular basis. | |||
2001-11-04 | Note that PyGreSQL has been checked against Python 2.1 now. | D'Arcy J.M. Cain | |
2001-11-04 | The "%d", while syntactically correct, was confusing. Added a space to | D'Arcy J.M. Cain | |
make it clearer that d was the argument to the format operator. | |||
2001-11-04 | - Fix compiler warning in pg_restore | Philip Warner | |
- Fix handling of {data/schema}-only restores when using a full backup file; prior version was restoring schema in data-only restores. Added enum to make code easier to understand. | |||
2001-11-04 | Got "ADD" to appear only in ALTER TABLE and not CREATE TABLE | Bruce Momjian | |
UNIQUE-PRIMARY KEY notice message. This is what Christopher wanted from his patch. | |||
2001-11-04 | Remove "ADD" from TABLE / ADD UNIQUE-PRIMARY error message because the | Bruce Momjian | |
same code is called for both creation and alter. Not worth worrying about. | |||
2001-11-03 | Require closing paren on line above brace to identify function | Bruce Momjian | |
difinition, just for formatting workaround, per Tom's discovery. | |||
2001-11-03 | More updates for GNU indent. | Bruce Momjian | |
2001-11-03 | 1) Improve literal handling in parse_statement(). | Hiroshi Inoue | |
2) Remove some no longer valid comments. 3) Fix an option dialog setting bug. 4) Fix ODBCVER handling errors. | |||
2001-11-03 | Make pgindent use GNU Indent version 2.X better. | Bruce Momjian | |
2001-11-02 | proper select for Jason Davies patch to getImportedKeys | Dave Cramer | |
2001-11-02 | proper select for Jason Davies patch to getImportedKeys | Dave Cramer | |
fixes for compiling Jason's getImportedKeys, getExportedKeys |