Resolving Collisions Between SQLITE_CREATE_INDEX/CREATE_TABLE and SQLITE_DENY/IGNORE Constants in Authorization Callbacks
Issue Overview: Missing SQLITE_CREATE_TABLE/INDEX Authorization Events Due to Constant Overlap When implementing an authorization callback using SQLite’s sqlite3_set_authorizer() mechanism through Python’s sqlite3 module, developers may encounter situations where expected authorization events for table and index creation operations fail to trigger. This manifests specifically as SQLITE_CREATE_TABLE (action code 2) and SQLITE_CREATE_INDEX (action code 1) not appearing…