// "PARAM1 + PARAM2", then
// the column set will have separate entries for FOO->PARAM1
// and FOO->PARAM2
LOG.debug("Materialize Elements: " + materialize_elements);
for (int ctr = 0, cnt = materialize_elements.size(); ctr < cnt; ctr++) {
Column catalog_col = catalog_tbl.getColumns().get(ctr);
assert (catalog_col != null);
for (CatalogType catalog_item : materialize_elements.get(ctr)) {
cset.add(catalog_col, catalog_item, ExpressionType.COMPARE_EQUAL, catalog_stmt);
LOG.debug(String.format("[%02d] Adding Entry %s => %s", ctr, catalog_col, catalog_item));
} // FOR