Skip to content

Commit

Permalink
Disable array test in Cassandra more properly
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed Jan 8, 2021
1 parent d97db32 commit 3a64f51
Showing 1 changed file with 6 additions and 9 deletions.
Expand Up @@ -34,6 +34,12 @@ protected boolean supportsViews()
return false;
}

@Override
protected boolean supportsArrays()
{
return false;
}

@Override
protected boolean supportsCommentOnTable()
{
Expand Down Expand Up @@ -76,15 +82,6 @@ public void testDropColumn()
// Cassandra does not support dropping columns
}

@Override
public void testInsertArray()
{
// TODO
assertThatThrownBy(super::testInsertArray)
.hasMessage("unsupported type: array(double)");
throw new SkipException("Unsupported");
}

@Override
public void testDelete()
{
Expand Down

0 comments on commit 3a64f51

Please sign in to comment.