// obviously any string can be a string
tc("String", Types.VARCHAR, "col_varchar", "hello", null, null),
tc("Time", Types.TIME, "col_time", new Time(timeOfDay), "Mike", null),
tc("Timestamp(Datetime)", Types.TIMESTAMP, "col_datetime", new Timestamp(timeNoMillis), "Bob", null),
tc("GUID", Types.OTHER, "col_guid", UUID.randomUUID(), "3249",
new PSQLException("3249", new PSQLState("2202I"))),
};
return Arrays.asList(tcs);
}