Skip to content

Commit

Permalink
fixup! create ExecutionNode interface and let CollectNode implement it
Browse files Browse the repository at this point in the history
  • Loading branch information
msbt committed Mar 27, 2015
1 parent 946d4d0 commit 2848e04
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@

package io.crate.integrationtests;

import com.carrotsearch.randomizedtesting.annotations.Repeat;
import com.carrotsearch.randomizedtesting.annotations.Seed;
import io.crate.Constants;
import io.crate.action.sql.SQLActionException;
import io.crate.action.sql.SQLResponse;
Expand All @@ -42,7 +40,6 @@



@Seed("28FA742257F52FD7")
@CrateIntegrationTest.ClusterScope(scope = CrateIntegrationTest.Scope.GLOBAL)
public class GroupByAggregateTest extends SQLTransportIntegrationTest {

Expand Down Expand Up @@ -358,11 +355,6 @@ public void testGroupByAggSumDouble() throws Exception {

execute("select sum(income), department from employees group by department order by sum(income) asc");
assertEquals(4, response.rowCount());
assertThat(TestingHelpers.printedTable(response.rows()), is(
"10000.0| engineering\n" +
"1.00000000049E9| HR\n" +
"1.7976931348623157E308| management\n" +
"NULL| internship\n"));

assertEquals("engineering", response.rows()[0][1]);
assertEquals(10000.0, response.rows()[0][0]);
Expand Down Expand Up @@ -987,7 +979,6 @@ public void testNonDistributedGroupByWithHavingAndLimit() throws Exception {
}
}

@Repeat(iterations=10)
@Test
public void groupByAggregateStdDevByte() throws Exception {
this.setup.groupBySetup("byte");
Expand Down

0 comments on commit 2848e04

Please sign in to comment.