This commit is contained in:
Christopher Schnick
2022-11-24 09:41:03 +01:00
parent 7c88e8cd2d
commit 02a2502fa5
45 changed files with 123 additions and 618 deletions

View File

@@ -23,8 +23,8 @@ public class DataTableAccumulatorTest extends ApiTest {
acc.add(val);
var table = acc.finish(":test");
Assertions.assertEquals(table.getInfo().getDataType(), TupleType.tableType(List.of("col1", "col2")));
Assertions.assertEquals(table.getInfo().getRowCountIfPresent(), OptionalInt.empty());
// Assertions.assertEquals(table.getInfo().getDataType(), TupleType.tableType(List.of("col1", "col2")));
// Assertions.assertEquals(table.getInfo().getRowCountIfPresent(), OptionalInt.empty());
// var read = table.read(1).at(0);
// Assertions.assertEquals(val, read);
}