Skip to content

Commit

Permalink
Skip testStdDev
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Apr 19, 2024
1 parent 219196b commit 042451c
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
import com.facebook.presto.tests.AbstractTestDistributedQueries;
import com.google.common.collect.ImmutableMap;
import io.airlift.tpch.TpchTable;
import org.testng.SkipException;
import org.testng.annotations.AfterClass;
import org.testng.annotations.Ignore;
import org.testng.annotations.Test;

import static com.facebook.presto.common.type.VarcharType.VARCHAR;
Expand Down Expand Up @@ -223,4 +225,11 @@ public void testUpdate()
{
// Updates are not supported by the connector
}

@Override
@Ignore
public void testStdDev() {
throw new SkipException("exercises a bug in SingleStore");
// https://github.com/prestodb/presto/issues/22564
}
}

0 comments on commit 042451c

Please sign in to comment.