Limbo Peng
Limbo Peng
TODOs: - [ ] rename `table::engine::TableReference` (introduced in #491) to `TableFullName` - [ ] replace all occurrences of tuple `(catalog_name, schema_name, table_name)` with `TableFullName` (could be found by `rg '\(catalog\S+,...
Sorry but no progress has been made. Please reassign this issue as you see fit. Apologize for the delay of updates :(
Any suggestion how to test this change? Make a request that exceeds the specified timeout and check elapsed seconds?
oops, late for the party 😂
Nice. I can try to implement the tests.
After reading all the comments above, I still haven't figure how to write XML to `std::fs::File` with `to_writer` (without holding the complete XML output in memory first) :(
Would it be possible to override project-specific envs in local settings (`.zed/settings.json`)?
可以试试酷炫的 [GitBook](https://www.gitbook.io/)
For syncing updates of `data_editor` back to database, this might work: ```python generation = st.session_state.setdefault("generation", 0) df = db.query("SELECT ...", ttl=5) def on_rows_change(): st.info(f"rows updated: generation={st.session_state.generation}") st.session_state.generation += 1 st.data_editor(df,...
It seems to be caused by changes of `net/http` in Go 1.23. No data race encountered when running tests with Go 1.22.