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 ma...@apache.org on 2014/10/03 20:27:21 UTC

svn commit: r1629282 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schemas.out

Author: mamta
Date: Fri Oct  3 18:27:21 2014
New Revision: 1629282

URL: http://svn.apache.org/r1629282
Log:
DERBY-6269(Misleading warning text if you create an index duplicating a constraint.)

Fix a master diff

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schemas.out

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schemas.out
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schemas.out?rev=1629282&r1=1629281&r2=1629282&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schemas.out (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/schemas.out Fri Oct  3 18:27:21 2014
@@ -448,7 +448,7 @@ create index ixsampletab on sampletab(c1
 0 rows inserted/updated/deleted
 ij> create index ix2sampletab on test.sampletab(c1);
 0 rows inserted/updated/deleted
-WARNING 01504: The new index is a duplicate of an existing index: IXSAMPLETAB.
+WARNING 01504: 'IX2SAMPLETAB' index not created because it is a duplicate of an existing index: 'IXSAMPLETAB'.
 ij> create view vsampletab as select * from sampletab;
 0 rows inserted/updated/deleted
 ij> create view v2sampletab as select * from test.sampletab;