Make bitmap_union agg column support insert into and broker load (#1721)

This commit is contained in:
kangkaisen
2019-08-30 14:44:51 +08:00
committed by ZHAO Chun
parent 378ce8ca04
commit 3a33f3d350
10 changed files with 88 additions and 6 deletions

View File

@ -95,7 +95,7 @@ public class ColumnTypeTest {
@Test(expected = AnalysisException.class)
public void testCharInvalid() throws AnalysisException {
TypeDef type = TypeDef.createVarchar(0);
TypeDef type = TypeDef.createVarchar(-1);
type.analyze(null);
Assert.fail("No Exception throws");
}