postgresql/src/test/regress/expected
Tom Lane f45df8c014 Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailing
blanks, in hopes of reducing the surprise factor for newbies.  Remove
redundant operators for VARCHAR (it depends wholly on TEXT operations now).
Clean up resolution of ambiguous operators/functions to avoid surprising
choices for domains: domains are treated as equivalent to their base types
and binary-coercibility is no longer considered a preference item when
choosing among multiple operators/functions.  IsBinaryCoercible now correctly
reflects the notion that you need *only* relabel the type to get from type
A to type B: that is, a domain is binary-coercible to its base type, but
not vice versa.  Various marginal cleanup, including merging the essentially
duplicate resolution code in parse_func.c and parse_oper.c.  Improve opr_sanity
regression test to understand about binary compatibility (using pg_cast),
and fix a couple of small errors in the catalogs revealed thereby.
Restructure "special operator" handling to fetch operators via index opclasses
rather than hardwiring assumptions about names (cleans up the pattern_ops
stuff a little).
2003-05-26 00:11:29 +00:00
..
abstime-solaris-1947.out Update regress tests to reflect removal of 'current'. 2001-11-21 18:27:25 +00:00
abstime.out Update regress tests to reflect removal of 'current'. 2001-11-21 18:27:25 +00:00
aggregates.out Reimplement NUMERIC datatype using base-10000 arithmetic; also improve 2003-03-21 01:58:05 +00:00
alter_table.out Backend support for autocommit removed, per recent discussions. The 2003-05-14 03:26:03 +00:00
arrays.out First phase of work on array improvements. ARRAY[x,y,z] constructor 2003-04-08 23:20:04 +00:00
bit.out Allow bit string constants without fully-specified length declaration. 2002-08-04 06:33:59 +00:00
boolean.out Match results with format from new psql. 2000-01-04 16:19:34 +00:00
box.out Implement column aliases on views "CREATE VIEW name (collist)". 2000-03-14 23:06:59 +00:00
btree_index.out Update remaining tests for new psql, with the exception of 'arrays', 2000-01-09 03:48:39 +00:00
case.out COALESCE() and NULLIF() are now first-class expressions, not macros 2003-02-16 02:30:39 +00:00
char.out Make char(n) and varchar(n) types raise an error if the inserted string is 2001-05-21 16:54:46 +00:00
char_1.out Make regression tests locale-proof by setting some locale categories 2002-05-14 13:05:43 +00:00
circle.out Revise geometry regression testing to eliminate most cross-platform 2002-11-08 20:09:55 +00:00
cluster.out Add ALTER TABLE <tablename> CLUSTER ON <indexname> 2003-03-20 18:52:48 +00:00
comments.out Implement nested block comments in the backend and in psql. 2000-07-14 15:43:57 +00:00
conversion.out Remove encoding lookups from grammar stage, push them back to places 2002-11-02 18:41:22 +00:00
copy2.out Backend support for autocommit removed, per recent discussions. The 2003-05-14 03:26:03 +00:00
create_aggregate.out Revise aggregate functions per earlier discussions in pghackers. 2000-07-17 03:05:41 +00:00
create_index.out Add some minimal exercising of functional-index feature to regression 2001-08-27 23:23:35 +00:00
create_misc.out Todo items: 2003-03-20 07:02:11 +00:00
create_operator.out Update output to new psql conventions. 2000-01-05 17:31:08 +00:00
create_table.out Change made to elog: 2002-03-06 06:10:59 +00:00
create_type.out Reduce messages associated with shell-type function arguments/results 2002-11-01 19:19:58 +00:00
create_view.out Department of second thoughts: make checks for replacing a view slightly 2002-09-02 20:04:40 +00:00
date.out Add regression tests for date, time, and time with time zone types. 2000-09-12 05:42:20 +00:00
domain.out Backend support for autocommit removed, per recent discussions. The 2003-05-14 03:26:03 +00:00
errors.out Add explicit tests for division by zero to all user-accessible integer 2003-03-11 21:01:33 +00:00
euc_cn.out Fixes for char_length() change. 2000-03-16 11:55:43 +00:00
euc_jp.out Fix for drop db message format changes 2000-10-27 02:25:34 +00:00
euc_kr.out Fixes for char_length() change. 2000-03-16 11:55:43 +00:00
euc_tw.out Fixes for char_length() change. 2000-03-16 11:55:43 +00:00
float4-exp-three-digits.out Add explicit tests for division by zero to all user-accessible integer 2003-03-11 21:01:33 +00:00
float4.out Add explicit tests for division by zero to all user-accessible integer 2003-03-11 21:01:33 +00:00
float8-exp-three-digits.out Add explicit tests for division by zero to all user-accessible integer 2003-03-11 21:01:33 +00:00
float8-fp-exception.out Add explicit tests for division by zero to all user-accessible integer 2003-03-11 21:01:33 +00:00
float8-small-is-zero.out Add explicit tests for division by zero to all user-accessible integer 2003-03-11 21:01:33 +00:00
float8.out Add explicit tests for division by zero to all user-accessible integer 2003-03-11 21:01:33 +00:00
foreign_key.out Avoid primary key lookup (and lock) if foreign key does not change 2003-04-07 20:30:38 +00:00
geometry.out Revise geometry regression testing to eliminate most cross-platform 2002-11-08 20:09:55 +00:00
geometry_1.out Admit defeat on the prospect of keeping straight exactly which platforms 2002-12-13 20:35:57 +00:00
hash_index.out Update remaining tests for new psql, with the exception of 'arrays', 2000-01-09 03:48:39 +00:00
horology-no-DST-before-1970.out Attached is a patch that limits the range tested by horology to 2003-03-20 06:03:00 +00:00
horology-solaris-1947.out Attached is a patch that limits the range tested by horology to 2003-03-20 06:03:00 +00:00
horology.out Attached is a patch that limits the range tested by horology to 2003-03-20 06:03:00 +00:00
inet.out Back out ORDER BY addition to Inet, for Tom. 2003-01-15 20:01:01 +00:00
inherit.out Turns out new IN implementation has got some problems in an UPDATE or 2003-03-05 20:01:04 +00:00
insert.out Change error messages ExecAppend->ExecInsert and ExecReplace->ExecUpdate 2002-07-11 21:36:20 +00:00
int2.out Match results with format from new psql. 2000-01-04 16:19:34 +00:00
int4.out Implement column aliases on views "CREATE VIEW name (collist)". 2000-03-14 23:06:59 +00:00
int8-exp-three-digits.out Update regression expected results for to_char() change. 2002-09-20 16:44:55 +00:00
int8.out to_char fixes, Karel Zak 2003-03-27 16:35:31 +00:00
interval.out First phase of FE/BE protocol modifications: new StartupPacket layout 2003-04-17 22:26:02 +00:00
join.out Fix thinko in new logic about pushing down non-nullability constraints: 2003-02-10 17:08:50 +00:00
limit.out Remove LIMIT #,# and suggest LIMIT # OFFSET #, per mailing list discussion. 2001-10-20 02:55:39 +00:00
lseg.out Verified output from new psql. 2000-01-05 06:06:23 +00:00
mule_internal.out Fixes for char_length() change. 2000-03-16 11:55:43 +00:00
name.out Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailing 2003-05-26 00:11:29 +00:00
numeric.out to_char fixes, Karel Zak 2003-03-27 16:35:31 +00:00
numeric_big.out Update numeric_big regress test for 7.0. This has apparently been 2000-03-30 07:13:20 +00:00
numerology.out Tweak GROUP BY so that it will still accept result-column names, but only 2000-03-15 23:31:19 +00:00
oid.out Make oidin/oidout produce and consume unsigned representation of Oid, 2000-11-21 03:23:21 +00:00
oidjoins.out Backend support for autocommit removed, per recent discussions. The 2003-05-14 03:26:03 +00:00
opr_sanity.out Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailing 2003-05-26 00:11:29 +00:00
path.out Verified output from new psql. 2000-01-05 06:06:23 +00:00
plpgsql.out Infrastructure for upgraded error reporting mechanism. elog.c is 2003-04-24 21:16:45 +00:00
point.out First cut at full support for OUTER JOINs. There are still a few loose 2000-09-12 21:07:18 +00:00
polygon.out Verified output from new psql. 2000-01-05 06:06:23 +00:00
portals.out Code review for holdable-cursors patch. Fix error recovery, memory 2003-04-29 03:21:30 +00:00
portals_p2.out Partial indexes work again, courtesy of Martijn van Oosterhout. 2001-07-16 05:07:00 +00:00
prepare.out Extend pg_cast castimplicit column to a three-way value; this allows us 2002-09-18 21:35:25 +00:00
privileges.out Backend support for autocommit removed, per recent discussions. The 2003-05-14 03:26:03 +00:00
random.out The "random" regression test uses a function called oidrand(), which 2003-02-13 05:24:04 +00:00
rangefuncs.out Arrange to give error when a SetOp member statement refers to a variable 2003-02-13 20:45:22 +00:00
reltime.out Verified output from new psql. 2000-01-05 06:06:23 +00:00
rules.out Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailing 2003-05-26 00:11:29 +00:00
sanity_check.out Fix pg_dump to dump serial columns as serials. Per pghackers discussion, 2002-08-19 19:33:36 +00:00
select.out New depend code auto-drops sequence, fix copy2.out. 2002-07-18 17:11:49 +00:00
select_distinct.out Add a basic regression test for IS DISTINCT FROM, which has spent way too 2002-12-13 20:16:11 +00:00
select_distinct_on.out Redesign DISTINCT ON as discussed in pgsql-sql 1/25/00: syntax is now 2000-01-27 18:11:50 +00:00
select_having.out Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailing 2003-05-26 00:11:29 +00:00
select_having_1.out Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailing 2003-05-26 00:11:29 +00:00
select_implicit.out Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailing 2003-05-26 00:11:29 +00:00
select_implicit_1.out Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailing 2003-05-26 00:11:29 +00:00
select_into.out Remove FROM warning by fixing query. 2000-06-04 17:52:54 +00:00
select_views.out Fixing closed-path intersection logic causes this test to find more 2001-10-13 17:41:11 +00:00
select_views_1.out Make regression tests locale-proof by setting some locale categories 2002-05-14 13:05:43 +00:00
sequence.out Todo items: 2003-03-20 07:02:11 +00:00
sql_ascii.out Fixes for char_length() change. 2000-03-16 11:55:43 +00:00
strings.out Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailing 2003-05-26 00:11:29 +00:00
subselect.out Extend join-selectivity API (oprjoin interface) so that join type is 2003-01-28 22:13:41 +00:00
temp.out Backend support for autocommit removed, per recent discussions. The 2003-05-14 03:26:03 +00:00
text.out Match results with format from new psql. 2000-01-04 16:19:34 +00:00
time.out Allow a time zone to be specified (and silently ignored) in the input 2003-01-31 01:08:08 +00:00
timestamp.out Repair an embarrassingly large number of alphabetization mistakes in the 2003-01-16 00:26:49 +00:00
timestamptz.out Repair an embarrassingly large number of alphabetization mistakes in the 2003-01-16 00:26:49 +00:00
timetz.out Fix queries to insulate from daylight savings time. 2001-10-31 14:44:23 +00:00
tinterval-solaris-1947.out Update solaris-1947 variant files for new datetime regression tests. 2001-10-30 22:48:57 +00:00
tinterval.out Add separate regression tests for timetz and the new timestamptz type. 2001-09-28 08:00:11 +00:00
transactions.out Read-only transactions, as defined in SQL. 2003-01-10 22:03:30 +00:00
triggers.out Update regression for new patches. Bump up catversion. 2002-11-23 18:13:22 +00:00
truncate.out Transaction safe Truncate 2002-11-23 04:05:52 +00:00
type_sanity.out Implement array_send/array_recv (binary I/O for arrays). This exposed 2003-05-09 23:01:45 +00:00
union.out Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailing 2003-05-26 00:11:29 +00:00
vacuum.out Add new vacuum regression test files. 2002-07-20 04:58:14 +00:00
varchar.out Make char(n) and varchar(n) types raise an error if the inserted string is 2001-05-21 16:54:46 +00:00
varchar_1.out Make regression tests locale-proof by setting some locale categories 2002-05-14 13:05:43 +00:00
without_oid.out Add new configure files for missing-oid patch. 2002-07-20 05:39:46 +00:00