On 8/29/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Author: djd
Date: Tue Aug 29 13:59:44 2006
New Revision: 438211
URL: http://svn.apache.org/viewvc?rev=438211&view=rev
Log:
Minor fix to nist scripts basetab, schema1 and schema5 not to call exit at the
end as it is not required.
Modified:
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/basetab.out
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schema1.out
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schema5.out
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/basetab.sql
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/schema1.sql
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/schema5.sql
Modified:
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/basetab.out
URL:
http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/basetab.out?rev=438211&r1=438210&r2=438211&view=diff
==============================================================================
---
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/basetab.out
(original)
+++
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/basetab.out
Tue Aug 29 13:59:44 2006
@@ -168,4 +168,4 @@
ij> -- PASS:Setup if count = 6?
-- *************************************************////END-OF-MODULE
disconnect;
-ij> exit;
+ij>
Modified:
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schema1.out
URL:
http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schema1.out?rev=438211&r1=438210&r2=438211&view=diff
==============================================================================
---
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schema1.out
(original)
+++
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schema1.out
Tue Aug 29 13:59:44 2006
@@ -397,4 +397,4 @@
ij> CREATE VIEW VSTAFF3 AS SELECT * FROM STAFF3;
0 rows inserted/updated/deleted
ij> disconnect;
-ij> exit;
+ij>
Modified:
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schema5.out
URL:
http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schema5.out?rev=438211&r1=438210&r2=438211&view=diff
==============================================================================
---
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schema5.out
(original)
+++
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schema5.out
Tue Aug 29 13:59:44 2006
@@ -119,4 +119,4 @@
ij> --0 PASS: if an error is returned that the view is circular
-- ************* End of Schema *************
disconnect;
-ij> exit;
+ij>
Modified:
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/basetab.sql
URL:
http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/basetab.sql?rev=438211&r1=438210&r2=438211&view=diff
==============================================================================
---
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/basetab.sql
(original)
+++
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/basetab.sql
Tue Aug 29 13:59:44 2006
@@ -102,4 +102,3 @@
-- PASS:Setup if count = 6?
-- *************************************************////END-OF-MODULE
disconnect;
-exit;
Modified:
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/schema1.sql
URL:
http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/schema1.sql?rev=438211&r1=438210&r2=438211&view=diff
==============================================================================
---
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/schema1.sql
(original)
+++
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/schema1.sql
Tue Aug 29 13:59:44 2006
@@ -427,4 +427,3 @@
CREATE VIEW VSTAFF3 AS SELECT * FROM STAFF3;
disconnect;
-exit;
Modified:
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/schema5.sql
URL:
http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/schema5.sql?rev=438211&r1=438210&r2=438211&view=diff
==============================================================================
---
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/schema5.sql
(original)
+++
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/nist/schema5.sql
Tue Aug 29 13:59:44 2006
@@ -122,4 +122,3 @@
-- ************* End of Schema *************
disconnect;
-exit;
When changing the nist tests' files we're supposed to document this in
the readme in the directory.
Now it caught my eye, I noticed one more change where this probably
should've happened - 7 months ago to dml160.sql, revision 365776...
Myrna