示例#1
0
function compare_views($old, $new)
{
    $diffs = array();
    $diffs["create"] = compare_create($old, $new);
    $diffs["drop"] = compare_drop($old, $new);
    return $diffs;
}
示例#2
0
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;
}