Constant INCOMPATIBLE

Source
pub const INCOMPATIBLE: c_int = ffi::MDB_INCOMPATIBLE; // -30_784i32
Expand description

Operation and DB incompatible, or DB type changed. This can mean:

  • The operation expects an DUPSORT / DUPFIXED database.
  • Opening a named DB when the unnamed DB has DUPSORT / INTEGERKEY.
  • Accessing a data record as a database, or vice versa.
  • The database was dropped and recreated with different flags.