You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by km...@apache.org on 2005/10/19 02:38:00 UTC

svn commit: r326308 - /db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/forupdate.out

Author: kmarsden
Date: Tue Oct 18 17:37:56 2005
New Revision: 326308

URL: http://svn.apache.org/viewcvs?rev=326308&view=rev
Log:
DERBY-522 master update  to fix lang/forupdate.sql failure in 10.1

Contributed by Army Brown

Modified:
    db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/forupdate.out

Modified: db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/forupdate.out
URL: http://svn.apache.org/viewcvs/db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/forupdate.out?rev=326308&r1=326307&r2=326308&view=diff
==============================================================================
--- db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/forupdate.out (original)
+++ db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/forupdate.out Tue Oct 18 17:37:56 2005
@@ -20,7 +20,7 @@
 ij> -- . leave out some keywords (for, update, read, only)
 ----- results: all of these should get syntax errors for missing/inappropriate keywords
 select i, v from t1 for;
-ERROR 42X01: Syntax error: Encountered "<EOF>" at line 3, column 23.
+ERROR 42X01: Syntax error: Encountered "<EOF>" at line 1, column 23.
 ij> select i, v from t1 for read;
 ERROR 42X01: Syntax error: Encountered "<EOF>" at line 1, column 28.
 ij> select i, v from t1 for only;
@@ -177,7 +177,7 @@
 ij> -- . try using qualified column name
 ----- expect an error, only unqualified names are expected (SQL92 spec):
 select i from t1 for update of t1.v, t1.i, t1.d;
-ERROR 42X01: Syntax error: Encountered "." at line 3, column 34.
+ERROR 42X01: Syntax error: Encountered "." at line 1, column 34.
 ij> -- . for update when select list has expressions and correlation name in use,
 -----   and column is repeated
 ----- this is allowed: