function compare_views($old, $new) { $diffs = array(); $diffs["create"] = compare_create($old, $new); $diffs["drop"] = compare_drop($old, $new); return $diffs; }
function compare_views($old, $new) { $diffs = array(); $diffs["create"] = compare_create($old, $new); $diffs["drop"] = compare_drop($old, $new); $diffs["insert"] = compare_insert($old, $new); $diffs["remove"] = compare_remove($old, $new); return $diffs; }