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 ba...@apache.org on 2005/06/03 20:01:08 UTC

svn commit: r179841 - /incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNet/syscat.out /incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/syscat.out

Author: bandaram
Date: Fri Jun  3 11:01:07 2005
New Revision: 179841

URL: http://svn.apache.org/viewcvs?rev=179841&view=rev
Log:
Update master outputs to reflect error message changes. The 'syscat.sql' test was added to derbynetmats after commiting the patch that changed error messages.

Submitted by Satheesh Bandaram (satheesh@sourcery.org)

Modified:
    incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNet/syscat.out
    incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/syscat.out

Modified: incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNet/syscat.out
URL: http://svn.apache.org/viewcvs/incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNet/syscat.out?rev=179841&r1=179840&r2=179841&view=diff
==============================================================================
--- incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNet/syscat.out (original)
+++ incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNet/syscat.out Fri Jun  3 11:01:07 2005
@@ -26,7 +26,7 @@
 ij> insert into sys.systables select * from sys.systables;
 ERROR 42Y25: 'SYS.SYSTABLES' is a system table.  Users are not allowed to modify the contents of this table.
 ij> get cursor c as 'select tablename from sys.systables for update of tablename';
-ERROR 42Y90: FOR UPDATE is not permitted on this type of statement.
+ERROR 42Y90: FOR UPDATE is not permitted in this type of statement.  
 ij> -- users not allowed to do ddl in sys schema
 create table sys.usertable(c1 int);
 ERROR 42X62: 'CREATE TABLE' is not allowed in the 'SYS' schema.

Modified: incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/syscat.out
URL: http://svn.apache.org/viewcvs/incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/syscat.out?rev=179841&r1=179840&r2=179841&view=diff
==============================================================================
--- incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/syscat.out (original)
+++ incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/syscat.out Fri Jun  3 11:01:07 2005
@@ -26,7 +26,7 @@
 ij> insert into sys.systables select * from sys.systables;
 ERROR 42Y25: 'SYS.SYSTABLES' is a system table.  Users are not allowed to modify the contents of this table.
 ij> get cursor c as 'select tablename from sys.systables for update of tablename';
-ERROR 42Y90: FOR UPDATE is not permitted on this type of statement.
+ERROR 42Y90: FOR UPDATE is not permitted in this type of statement.  
 ij> -- users not allowed to do ddl in sys schema
 create table sys.usertable(c1 int);
 ERROR 42X62: 'CREATE TABLE' is not allowed in the 'SYS' schema.