]> granicus.if.org Git - postgresql/commitdiff
Clean up error messages associated with rules and views.
authorThomas G. Lockhart <lockhart@fourpalms.org>
Sun, 13 Dec 1998 23:49:18 +0000 (23:49 +0000)
committerThomas G. Lockhart <lockhart@fourpalms.org>
Sun, 13 Dec 1998 23:49:18 +0000 (23:49 +0000)
Fix parser error message when an operator is not found
 to not explicitly claim that there is more than one.

src/test/regress/expected/errors.out
src/test/regress/expected/geometry.out

index 3d73007367e05dcb011e54d89a2b70848cec151c..837056caef928f1132455fbf445b4bf0d9756e71 100644 (file)
@@ -139,7 +139,7 @@ ERROR:  parser: parse error at or near ";"
 QUERY: drop rule 314159;
 ERROR:  parser: parse error at or near "314159"
 QUERY: drop rule nonesuch;
-ERROR:  RewriteGetRuleEventRel: rule "nonesuch" not found
+ERROR:  Rule or view 'nonesuch' not found
 QUERY: drop tuple rule nonesuch;
 ERROR:  parser: parse error at or near "tuple"
 QUERY: drop instance rule nonesuch;
index bc30045cacdbb80051d7312d3ea72f446a039520..5705a06792d66c835e115ecd82131456db038ba6 100644 (file)
@@ -87,7 +87,7 @@ one|f1
 
 QUERY: SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
    FROM LSEG_TBL l, POINT_TBL p;
-ERROR:  There is more than one possible operator '#' for types 'lseg' and 'point'
+ERROR:  Unable to identify an operator '#' for types 'lseg' and 'point'
        You will have to retype this query using an explicit cast
 QUERY: SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
    FROM LSEG_TBL l, POINT_TBL p;