aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* psql's recognition of comments didn't work right in MULTIBYTETom Lane1999-04-25
| | | | environments; it was being careless about character lengths.
* Explicitly set PGCLIENTENCODING during regression tests,Tom Lane1999-04-25
| | | | since multibyte tests fail if it's different from database...
* Still had a few MULTIBYTE problems when client encoding wasTom Lane1999-04-25
| | | | different from database's ...
* Correct potential infinite loop in pg_utf2wchar_with_len;Tom Lane1999-04-25
| | | | | | it failed to cover the case where high bits of char are 100 or 101. Not sure if fix is right, but it agrees with pg_utf_mblen ... and it doesn't lock up ...
* Multibyte tests were all 'failing' because of change ofTom Lane1999-04-25
| | | | | wording of 'relation does not exist' error message. Update expected files accordingly.
* My first cut at libpq revision didn't handle MULTIBYTE correctly,Tom Lane1999-04-25
| | | | but I think it's OK now...
* Clean up gcc warning in MULTIBYTE code.Tom Lane1999-04-25
|
* ifdef out some unused routines to suppress gcc warnings.Tom Lane1999-04-25
|
* Ooops, missed committing this one...Tom Lane1999-04-25
|
* Revise backend libpq interfaces so that messages to the frontendTom Lane1999-04-25
| | | | | | can be generated in a buffer and then sent to the frontend in a single libpq call. This solves problems with NOTICE and ERROR messages generated in the middle of a data message or COPY OUT operation.
* Rename explain's "size" to "rows".Bruce Momjian1999-04-23
|
* Add disk space message to "can not extend" message.Bruce Momjian1999-04-23
|
* Remove "Non-functional update" notices since that message has beenThomas G. Lockhart1999-04-23
| | | | disabled (commented-out) in the code.
* Repair missing heap_endscan() in OperatorUpd().Tom Lane1999-04-23
|
* Fix duplicating ROOT page in concurrent updates.Vadim B. Mikheev1999-04-22
|
* Un-break CREATE TYPE. Fix some other inconsistencies in theTom Lane1999-04-20
| | | | | pg_proc entries for array I/O routines besides the one detected by the original patcher. Tighten type_sanity regress test accordingly.
* Change elog(ERROR) to get back to main loop via a plain sigsetjmp,Tom Lane1999-04-20
| | | | | | instead of doing a kill(self, SIGQUIT) and expecting the signal handler to do it. Also, clean up inconsistent definitions of the sigjmp buffer in the several files that already referenced it.
* Portability patches for HPUX 11 and Unixware in configureTom Lane1999-04-20
| | | | | | and related files. Also remove float.c's gratuitous redeclaration of isinf() ... looks like there are more decls in there that ought to be in config.h, but I'll leave well enough alone for now ...
* Add temporary for temp.Bruce Momjian1999-04-19
|
* Fix typo in multi-byte encodings (EHC_CN --> EUC_CN)Tatsuo Ishii1999-04-19
|
* Fix problems seen when result of a subselect was used in anTom Lane1999-04-19
| | | | | | | expression context (ie, not at the top level of a WHERE clause). Examples like this one work now: SELECT name, value FROM t1 as touter WHERE (value/(SELECT AVG(value) FROM t1 WHERE name = touter.name)) > 0.75;
* Repair some problems in planner's handling of HAVING clauses.Tom Lane1999-04-19
| | | | | This fixes a few of the problems Hiroshi Inoue complained of, but I have not touched the rewrite-related issues.
* After transforming a CASE expr with a default argument,Tom Lane1999-04-18
| | | | | | | | delete the default argument from the node. This prevents the executor from spitting up on the untransformed argument expression. Typical failure was: select (case f1 when 'val' then 'subst' else f1 end) from t1; ERROR: copyObject: don't know how to copy 704
* Update CREATE FUNCTION's on-line help in psql.Tom Lane1999-04-18
|
* Allow CREATE FUNCTION xyz AS '' LANGUAGE 'internal' toTom Lane1999-04-18
| | | | | | work the way it used to (ie, assume xyz is the name of the builtin function to call). Complain if an unknown builtin function name is referenced.
* Add res checking to libpq examples, from Dan Merillat.Bruce Momjian1999-04-17
|
* Add missing function prototypes to stifle gcc warnings.Tom Lane1999-04-16
|
* *** empty log message ***Michael Meskes1999-04-16
|
* Fix kill() call in elog() so that it gets its own pid by calling getpid().Tatsuo Ishii1999-04-16
| | | | | | | MyProcPid global variable is set to 0 when postgres starts as a command (not as a backend daemon). This leads issuing SIGQUIT to the process group, not the process itself. As a result, parent sh gets core dumped in the Wisconsin benchmark test.
* Overhaul Wisconsin Benchmark test suitTatsuo Ishii1999-04-16
| | | | | | | - change temp -> temp_bench ("temp" is now a reserved word) - fix bugs in queries - add -B 256 option to run the postgres command (without this, postgres seems to fail with hashjoin)
* Improve error messages when a connection is rejected.Tom Lane1999-04-16
|
* Fix max(int8) result by making sure int8larger() copies its resultThomas G. Lockhart1999-04-15
| | | | | | | rather than reusing the input storage. Also made the same fix to int8smaller(), though there wasn't a symptom, and went through and verified that other pass-by-reference data types do the same thing. Not an issue for the by-value types.
* Initialize reltuples = 1000, relpages = 10 in a newly createdTom Lane1999-04-15
| | | | | | | | | | relation, rather than zeroes. This prevents the optimizer from making foolish choices (ie, using nested-loop plans) on never-yet-vacuumed tables. This is a hack, of course. Keeping accurate track of these statistics would be a cleaner solution, but it's far from clear that it'd be worth the cost of doing so. In any case we're not going to do that for 6.5. In the meantime, this quick hack provides a useful performance improvement in the regression tests and in many real-world scenarios.
* Add ORDER BY clauses to some select-from-view operationsTom Lane1999-04-15
| | | | | | | | in rules regression test, in order to eliminate bogus test 'failures' that occur due to platform-dependent and join-implementation-dependent ordering of tuples. I'm not sure that I got all of the SELECTs that need ordering clauses --- we may need some more. But this takes care of the diffs between my platform and Jan's.
* psql did the wrong thing with COPY FROM STDIN inside a fileTom Lane1999-04-15
| | | | | | | sourced with \i (tried to read data from the terminal, rather than from the source file; this breaks pg_dump scripts read with \i). Also, \o file followed by COPY TO STDOUT wrote to terminal not designated file. All better now.
* Move some useful date/time test macros to here to allowThomas G. Lockhart1999-04-15
| | | | sharing across files.
* Declare hashint8().Thomas G. Lockhart1999-04-15
|
* Fix code to check legal dates *before* calling localtime() to get theThomas G. Lockhart1999-04-15
| | | | | | | | time zone. Previously, localtime() rotated a date with a day of month field which exceeded the actual range into the next months, masking the fact that a bad date had been specified. Regression tests pass.
* Fix boolean assignment of return values to use "FALSE" rather than theThomas G. Lockhart1999-04-15
| | | | | mis-copied "NULL", which happens to have the same binary value. Previously, gcc gave non-fatal warnings.
* Code modified to reject out of range day of month.Thomas G. Lockhart1999-04-15
| | | | | | | Previously, dates falling within Unix system time range were run through a call to localtime() to get the time zone, if it was not specified. This had the effect that dates with DOMs which were larger than would be valid for that month were "rotated" into the following months.
* Fix error message to match that returned by new regression test referenceThomas G. Lockhart1999-04-15
| | | | machine (linux-2.0.36 RH5.2 with RH5.2 patches).
* Correct documentation of CREATE OPERATOR.Tom Lane1999-04-15
|
* Correct psql's online help for CREATE OPERATOR, which didTom Lane1999-04-14
| | | | not match what the backend actually accepts.
* pg_dump was trying to use an incorrect (or, perhaps, only obsolete?)Tom Lane1999-04-14
| | | | | | syntax for CREATE OPERATOR with SORT parameters. Fixed. It is now actually possible to dump and reload a database containing fully specified user-definable operators ...
* *** empty log message ***Michael Meskes1999-04-14
|
* use new config.guess output for system specific expected files ..Marc G. Fournier1999-04-14
|
* use config.guess instead of uname -s to figure out system, so that we canMarc G. Fournier1999-04-14
| | | | | | include platform spcific changes ... thanks to Mark Hollomon <mhh@nortelnetworks.com> for the awk script used
* Fix adding columns to a temp table.Bruce Momjian1999-04-13
|
* Add ARM32 support by Andrew McMurryBruce Momjian1999-04-13
|
* array_in is defined in the system catalog as taking two arguments while itBruce Momjian1999-04-13
| | | | | | actually takes three. Please apply the following patch. Massimo