You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2017/10/09 08:57:17 UTC

ignite git commit: IGNITE-6054: Fixed tests.

Repository: ignite
Updated Branches:
  refs/heads/master 87e7b32d5 -> 90624c64f


IGNITE-6054: Fixed tests.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/90624c64
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/90624c64
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/90624c64

Branch: refs/heads/master
Commit: 90624c64f76ae46cb98d30b0f7f0697ec6701fbb
Parents: 87e7b32
Author: devozerov <vo...@gridgain.com>
Authored: Mon Oct 9 11:57:06 2017 +0300
Committer: devozerov <vo...@gridgain.com>
Committed: Mon Oct 9 11:57:06 2017 +0300

----------------------------------------------------------------------
 .../cache/index/H2DynamicColumnsAbstractBasicSelfTest.java        | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/90624c64/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/H2DynamicColumnsAbstractBasicSelfTest.java
----------------------------------------------------------------------
diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/H2DynamicColumnsAbstractBasicSelfTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/H2DynamicColumnsAbstractBasicSelfTest.java
index 34be34d..b9f8c61 100644
--- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/H2DynamicColumnsAbstractBasicSelfTest.java
+++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/H2DynamicColumnsAbstractBasicSelfTest.java
@@ -341,8 +341,7 @@ public abstract class H2DynamicColumnsAbstractBasicSelfTest extends DynamicColum
      */
     private void doTestAlterTableOnFlatValue(String tblName) {
         assertThrows("ALTER TABLE " + tblName + " ADD COLUMN y varchar",
-            "ADD COLUMN is not supported for tables created with wrap_value=false param. " +
-                "(To enable ADD COLUMN, create table with wrap_value=true param).");
+            "Cannot add column(s) because table was created with WRAP_VALUE=false option.");
     }
 
     /**