public void testFormattedString() throws JSONException, IOException {
// Set the default timezone since we're using a timestamp type. Eliminate test flakeyness.
VoltDB.setDefaultTimezone();
VoltTable table = new VoltTable(
new ColumnInfo("tinyint", VoltType.TINYINT), new ColumnInfo(
"smallint", VoltType.SMALLINT), new ColumnInfo(
"integer", VoltType.INTEGER), new ColumnInfo("bigint",
VoltType.BIGINT), new ColumnInfo("float",
VoltType.FLOAT), new ColumnInfo("string",
VoltType.STRING), new ColumnInfo("varbinary",
VoltType.VARBINARY), new ColumnInfo("timestamp",
VoltType.TIMESTAMP), new ColumnInfo("decimal",
VoltType.DECIMAL));
// add a row of nulls the hard way
table.addRow(VoltType.NULL_TINYINT, VoltType.NULL_SMALLINT,
VoltType.NULL_INTEGER, VoltType.NULL_BIGINT,