assertFalse(exps.isEmpty());
AbstractExpression exp = CollectionUtil.first(exps);
assertNotNull(exp);
// Clone the mofo and make sure equals() returns true!
String json = exp.toJSONString();
assertFalse(json.isEmpty());
AbstractExpression clone = AbstractExpression.fromJSONObject(new JSONObject(json), catalog_db);
assertNotNull(clone);
assert(ExpressionUtil.equals(exp, clone));