String[] values = new String[] { null, "0", "0", "1", "2", "10", "a", "?" };
String[] compares = new String[] { "in(", "not in(", "=", "=", ">",
"<", ">=", "<=", "<>", "in(select", "not in(select" };
int size = getSize(100, 1000);
for (int i = 0; i < size; i++) {
long seed = seedGenerator.nextLong();
println("seed: " + seed);
Random random = new Random(seed);
ArrayList<String> params = New.arrayList();
String condition = getRandomCondition(random, params, columns, compares, values);
// System.out.println(condition + " " + params);