kevinjqliu opened a new pull request, #931:
URL: https://github.com/apache/iceberg-cpp/pull/931

   Part of apache/iceberg#18043
   
   The REST fixture compose sets 
`CATALOG_URI=jdbc:sqlite:file:/tmp/iceberg_rest_mode=memory`, carried over from 
the old databricks image. That isn't an in-memory db, there's no `?` so 
`iceberg_rest_mode=memory` is just part of the filename. It's a file-backed 
SQLite db on the default rollback journal, which only lets one connection touch 
the db at a time, so parallel clients can fail with `SQLITE_BUSY` ("database is 
locked").
   
   This switches it to `jdbc:sqlite:/tmp/iceberg_catalog.db?journal_mode=WAL`, 
matching the new fixture default in apache/iceberg#18044.
   
   🤖 Generated with [Claude Code](https://claude.com/claude-code)
   


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to