summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2001-11-11Test program needs to declare MaxBackends, per Bernd Tegge.Tom Lane
2001-11-11Defend against brain-dead QNX implementation of qsort().Tom Lane
Per report from Bernd Tegge, 10-Nov-01.
2001-11-11In find_mergeclauses_for_pathkeys, it's okay to return multiple mergeTom 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-11Fix for compiling libpq++ on Solaris with Sun SPRO6U2.Bruce Momjian
Denis A Ustimenko
2001-11-11sort_inner_and_outer needs a check to ensure that it's consumed all theTom 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-11Use abbreviated connection string more widely.Hiroshi Inoue
This seems to fix the trouble with PowerBuilder reported by Magbus Weber.
2001-11-11Defend against possibility that SSL error reporting mechanism returnsTom Lane
a NULL pointer. Per report from Stephen Pillinger 8-Nov-01.
2001-11-10Clean up usage-statistics display code (ShowUsage and friends). StatFpTom Lane
is gone, usage messages now go through elog(DEBUG).
2001-11-10Restructure child-exit logging messages for easier translation,Tom Lane
per suggestion from Peter.
2001-11-10Allow 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-09Jason Davies patch to getImported/getExported keysDave Cramer
2001-11-08Fix indenting for 'extern "C"' cases.Bruce Momjian
2001-11-08Make extern C handling more flexible.Bruce Momjian
2001-11-08PostgreSQL works again on Mac OS X 10.1. Hold your nose beforeTom Lane
investigating the kluge that makes it so...
2001-11-08Add casts to suppress compiler warnings observed on Darwin platformTom Lane
(surprised no one has reported these yet...)
2001-11-07Fix replacement of extern C string.Bruce Momjian
2001-11-07Fix typo.Bruce Momjian
2001-11-07Prevent indenting of 'extern "C"' blocks.Bruce Momjian
2001-11-07Some 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-06Update for latest version of horology test.REL7_2_BETA2Tom Lane
2001-11-06Clean up formatting of child process exit-status reports so that theyTom 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-06Fix last (?) problem with sensitivity to daylight savings time statusThomas G. Lockhart
when running the regression test. Reported by Tom Lane.
2001-11-06Add British Double Standard Time (BDST) per mailing list report.Thomas G. Lockhart
2001-11-06Use PostgreSQL's standard declaration for a 32-bit integer to defineThomas G. Lockhart
the cash data type.
2001-11-06Add Darwin to list of known systems for ps_status.Tom Lane
2001-11-06The extra semaphore that proc.c now allocates for checkpoint processesTom 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-05Fix coredump in plpgsql when trying to return a rowtype result.Tom Lane
Need to return a TupleTableSlot, not just a bare tuple.
2001-11-05New pgindent run with fixes suggested by Tom. Patch manually reviewed,Bruce Momjian
initdb/regression tests pass.
2001-11-05Preparation for the parameter array handling.Hiroshi Inoue
2001-11-051) Fix a few bugs about SQLGetData()Hiroshi Inoue
reported by Mika Mantyla. 2) Timestamp precision. 3) Separate ODBC3.0 files.
2001-11-05More cleanup for stuff after closing brace in first column.Bruce Momjian
2001-11-05Handle tabs after closing brace in first column with less indenting.Bruce Momjian
2001-11-05Improve readability of script.Bruce Momjian
2001-11-05CREATE TABLE foo (x,y,z) AS SELECT ... can't apply target column namesTom 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-05Remove ill-considered Assert.Tom Lane
2001-11-04Pull in variables defined in structs; had too many tabs.Bruce Momjian
2001-11-04Fix now-obsolete comment.Tom Lane
2001-11-04Version was 3.3 but last released version was 3.1. Setting to match restD'Arcy J.M. Cain
of the documentation in preparation for upcoming release.
2001-11-04Merge 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-04Note that PyGreSQL has been checked against Python 2.1 now.D'Arcy J.M. Cain
2001-11-04The "%d", while syntactically correct, was confusing. Added a space toD'Arcy J.M. Cain
make it clearer that d was the argument to the format operator.
2001-11-04- Fix compiler warning in pg_restorePhilip 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-04Got "ADD" to appear only in ALTER TABLE and not CREATE TABLEBruce Momjian
UNIQUE-PRIMARY KEY notice message. This is what Christopher wanted from his patch.
2001-11-04Remove "ADD" from TABLE / ADD UNIQUE-PRIMARY error message because theBruce Momjian
same code is called for both creation and alter. Not worth worrying about.
2001-11-03Require closing paren on line above brace to identify functionBruce Momjian
difinition, just for formatting workaround, per Tom's discovery.
2001-11-03More updates for GNU indent.Bruce Momjian
2001-11-031) 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-03Make pgindent use GNU Indent version 2.X better.Bruce Momjian
2001-11-02proper select for Jason Davies patch to getImportedKeysDave Cramer
2001-11-02proper select for Jason Davies patch to getImportedKeysDave Cramer
fixes for compiling Jason's getImportedKeys, getExportedKeys