snapshot_cmp method

int snapshot_cmp(
  1. PtrSnapshot p1,
  2. PtrSnapshot p2
)
inherited

Implementation

int snapshot_cmp(PtrSnapshot p1, PtrSnapshot p2) {
  if (_h_sqlite3_snapshot_cmp == null) {
    throw dbsql.DatabaseException(
        'API sqlite3_snapshot_cmp is not available, You need to enable it during library build.');
  }
  return _h_sqlite3_snapshot_cmp!(p1, p2);
}