CompareView compares two views and returns the detected changes.
(oldView, newView *storepb.ViewMetadata)
| 60 | type ViewComparer interface { |
| 61 | // CompareView compares two views and returns the detected changes. |
| 62 | CompareView(oldView, newView *storepb.ViewMetadata) ([]ViewChange, error) |
| 63 | |
| 64 | // CompareMaterializedView compares two materialized views and returns the detected changes. |
| 65 | CompareMaterializedView(oldMV, newMV *storepb.MaterializedViewMetadata) ([]MaterializedViewChange, error) |
no outgoing calls
no test coverage detected