Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
mofeiatwork committed Jul 16, 2022
1 parent dc52af4 commit ccd5b8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fe/fe-core/src/main/java/com/starrocks/qe/Coordinator.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import com.starrocks.analysis.DescriptorTable;
import com.starrocks.catalog.FsBroker;
import com.starrocks.catalog.ResourceGroup;
import com.starrocks.catalog.ResourceGroupClassifier;
import com.starrocks.common.Config;
import com.starrocks.common.MarkedCountDownLatch;
import com.starrocks.common.Pair;
Expand Down Expand Up @@ -743,7 +744,6 @@ private void deliverExecFragmentRequests(boolean enablePipelineEngine) throws Ex
* ┌────┼────┐
* │ │ │
* 2 3 4
* │ │ │
* ┌──┴─┐ │ │
* │ │ │ │
* 5 6 │ │
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ public void testIllegalClassifier() {
};

for (String[] c : cases) {
Assert.assertThrows(c[1], SemanticException.class, () -> starRocksAssert.executeWorkGroupDdlSql(c[0]));
Assert.assertThrows(c[1], SemanticException.class, () -> starRocksAssert.executeResourceGroupDdlSql(c[0]));
}
}
}

0 comments on commit ccd5b8e

Please sign in to comment.