Index: src/test/regress/expected/errors.out
===================================================================
RCS file: /projects/cvsroot/pgsql-server/src/test/regress/expected/errors.out,v
retrieving revision 1.47
diff -u -r1.47 errors.out
--- src/test/regress/expected/errors.out	25 Sep 2003 06:58:06 -0000	1.47
+++ src/test/regress/expected/errors.out	26 Feb 2004 02:51:42 -0000
@@ -22,13 +22,13 @@
  
 -- missing relation name 
 select;
-ERROR:  syntax error at or near ";" at character 7
+ERROR:  parse error at or near ";" at character 7
 -- no such relation 
 select * from nonesuch;
 ERROR:  relation "nonesuch" does not exist
 -- missing target list
 select from pg_database;
-ERROR:  syntax error at or near "from" at character 8
+ERROR:  parse error at or near "from" at character 8
 -- bad name in target list
 select nonesuch from pg_database;
 ERROR:  column "nonesuch" does not exist
@@ -40,7 +40,7 @@
 ERROR:  column "nonesuch" does not exist
 -- bad select distinct on syntax, distinct attribute missing
 select distinct on (foobar) from pg_database;
-ERROR:  syntax error at or near "from" at character 29
+ERROR:  parse error at or near "from" at character 29
 -- bad select distinct on syntax, distinct attribute not in target list
 select distinct on (foobar) * from pg_database;
 ERROR:  column "foobar" does not exist
@@ -49,7 +49,7 @@
  
 -- missing relation name (this had better not wildcard!) 
 delete from;
-ERROR:  syntax error at or near ";" at character 12
+ERROR:  parse error at or near ";" at character 12
 -- no such relation 
 delete from nonesuch;
 ERROR:  relation "nonesuch" does not exist
@@ -58,7 +58,7 @@
  
 -- missing relation name (this had better not wildcard!) 
 drop table;
-ERROR:  syntax error at or near ";" at character 11
+ERROR:  parse error at or near ";" at character 11
 -- no such relation 
 drop table nonesuch;
 ERROR:  table "nonesuch" does not exist
@@ -68,7 +68,7 @@
 -- relation renaming 
 -- missing relation name 
 alter table rename;
-ERROR:  syntax error at or near ";" at character 19
+ERROR:  parse error at or near ";" at character 19
 -- no such relation 
 alter table nonesuch rename to newnonesuch;
 ERROR:  relation "nonesuch" does not exist
@@ -122,10 +122,10 @@
  
 -- missing index name 
 drop index;
-ERROR:  syntax error at or near ";" at character 11
+ERROR:  parse error at or near ";" at character 11
 -- bad index name 
 drop index 314159;
-ERROR:  syntax error at or near "314159" at character 12
+ERROR:  parse error at or near "314159" at character 12
 -- no such index 
 drop index nonesuch;
 ERROR:  index "nonesuch" does not exist
@@ -134,13 +134,13 @@
  
 -- missing aggregate name 
 drop aggregate;
-ERROR:  syntax error at or near ";" at character 15
+ERROR:  parse error at or near ";" at character 15
 -- missing aggregate type
 drop aggregate newcnt1;
-ERROR:  syntax error at or near ";" at character 23
+ERROR:  parse error at or near ";" at character 23
 -- bad aggregate name 
 drop aggregate 314159 (int);
-ERROR:  syntax error at or near "314159" at character 16
+ERROR:  parse error at or near "314159" at character 16
 -- bad aggregate type
 drop aggregate newcnt (nonesuch);
 ERROR:  type "nonesuch" does not exist
@@ -155,10 +155,10 @@
  
 -- missing function name 
 drop function ();
-ERROR:  syntax error at or near "(" at character 15
+ERROR:  parse error at or near "(" at character 15
 -- bad function name 
 drop function 314159();
-ERROR:  syntax error at or near "314159" at character 15
+ERROR:  parse error at or near "314159" at character 15
 -- no such function 
 drop function nonesuch();
 ERROR:  function nonesuch() does not exist
@@ -167,10 +167,10 @@
  
 -- missing type name 
 drop type;
-ERROR:  syntax error at or near ";" at character 10
+ERROR:  parse error at or near ";" at character 10
 -- bad type name 
 drop type 314159;
-ERROR:  syntax error at or near "314159" at character 11
+ERROR:  parse error at or near "314159" at character 11
 -- no such type 
 drop type nonesuch;
 ERROR:  type "nonesuch" does not exist
@@ -179,22 +179,22 @@
  
 -- missing everything 
 drop operator;
-ERROR:  syntax error at or near ";" at character 14
+ERROR:  parse error at or near ";" at character 14
 -- bad operator name 
 drop operator equals;
-ERROR:  syntax error at or near ";" at character 21
+ERROR:  parse error at or near ";" at character 21
 -- missing type list 
 drop operator ===;
-ERROR:  syntax error at or near ";" at character 18
+ERROR:  parse error at or near ";" at character 18
 -- missing parentheses 
 drop operator int4, int4;
-ERROR:  syntax error at or near "," at character 19
+ERROR:  parse error at or near "," at character 19
 -- missing operator name 
 drop operator (int4, int4);
-ERROR:  syntax error at or near "(" at character 15
+ERROR:  parse error at or near "(" at character 15
 -- missing type list contents 
 drop operator === ();
-ERROR:  syntax error at or near ")" at character 20
+ERROR:  parse error at or near ")" at character 20
 -- no such operator 
 drop operator === (int4);
 ERROR:  missing argument
@@ -208,7 +208,7 @@
 HINT:  Use NONE to denote the missing argument of a unary operator.
 -- no such type1 
 drop operator = ( , int4);
-ERROR:  syntax error at or near "," at character 19
+ERROR:  parse error at or near "," at character 19
 -- no such type1 
 drop operator = (nonesuch, int4);
 ERROR:  type nonesuch does not exist
@@ -217,28 +217,28 @@
 ERROR:  type nonesuch does not exist
 -- no such type2 
 drop operator = (int4, );
-ERROR:  syntax error at or near ")" at character 24
+ERROR:  parse error at or near ")" at character 24
 --
 -- DROP RULE
  
 -- missing rule name 
 drop rule;
-ERROR:  syntax error at or near ";" at character 10
+ERROR:  parse error at or near ";" at character 10
 -- bad rule name 
 drop rule 314159;
-ERROR:  syntax error at or near "314159" at character 11
+ERROR:  parse error at or near "314159" at character 11
 -- no such rule 
 drop rule nonesuch on noplace;
 ERROR:  relation "noplace" does not exist
 -- bad keyword 
 drop tuple rule nonesuch;
-ERROR:  syntax error at or near "tuple" at character 6
+ERROR:  parse error at or near "tuple" at character 6
 -- no such rule 
 drop instance rule nonesuch on noplace;
-ERROR:  syntax error at or near "instance" at character 6
+ERROR:  parse error at or near "instance" at character 6
 -- no such rule 
 drop rewrite rule nonesuch;
-ERROR:  syntax error at or near "rewrite" at character 6
+ERROR:  parse error at or near "rewrite" at character 6
 --
 -- Check that division-by-zero is properly caught.
 --
Index: src/test/regress/expected/strings.out
===================================================================
RCS file: /projects/cvsroot/pgsql-server/src/test/regress/expected/strings.out,v
retrieving revision 1.23
diff -u -r1.23 strings.out
--- src/test/regress/expected/strings.out	27 Jul 2003 04:53:11 -0000	1.23
+++ src/test/regress/expected/strings.out	26 Feb 2004 02:51:44 -0000
@@ -18,7 +18,7 @@
 ' - next line' /* this comment is not allowed here */
 ' - third line'
 	AS "Illegal comment within continuation";
-ERROR:  syntax error at or near "' - third line'" at character 75
+ERROR:  parse error at or near "' - third line'" at character 75
 --
 -- test conversions between various string types
 -- E021-10 implicit casting among the character data types
