t = new VoltTable(new VoltTable.ColumnInfo("Test2", VoltType.BIGINT));
t.addRow(5L);
assertFalse(LONG_FIVE.equals(t));
// Different number of columns
t = new VoltTable(new ColumnInfo("Test", VoltType.BIGINT),
new ColumnInfo("Test2", VoltType.BIGINT));
assertFalse(LONG_FIVE.equals(t));
t.addRow(5L, 10L);
assertFalse(LONG_FIVE.equals(t));
// These are the same table
t = new VoltTable(new ColumnInfo("Test", VoltType.BIGINT));
t.addRow(5L);
assertEquals(LONG_FIVE, t);
// Test two tables with strings
t = new VoltTable(new VoltTable.ColumnInfo("Foo", VoltType.STRING));