vanshaj2023 commented on PR #50021: URL: https://github.com/apache/arrow/pull/50021#issuecomment-5184526858
@alinaliBQ found it: 1. `SQL_DROP_SCHEMA`/`SQL_DROP_TABLE` were pre-seeded to `0` in the constructor, which short-circuited `GetInfo`'s load-on-miss check — the real value only loaded if some other property triggered it first. Removed the premature defaults. 2. The SQLite mock genuinely has no schema DDL support (`SQL_DDL_SCHEMA = false`), so the Create/DropSchema mock expectations were just wrong. Fixed to expect `0` for mock, split DropSchema into mock/remote since support differs by backend. Pushed as f312558992. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
