Proc
Proc
This also happens on postgres. ```rust manager .create_table( Table::create() .table(ExampleTable::Table) .if_not_exists() .col(ColumnDef::new(ExampleTable::Id).integer().not_null().auto_increment().primary_key()) .col(ColumnDef::new(ExampleTable::Url).string().not_null()) .index(Index::create().col(ExampleTable::Url).name("index_url")) .to_owned(), ) .await .unwrap(); ``` This generates ```sql CREATE TABLE IF NOT EXISTS "example_table" ( "id"...
I for one would expect that it either errors out from the start (you have to make it unique, best case comp-time), or just make two SQL commands with some...
Done
My current guess is that windows doesn't flush the file and waits with change reports until either the file handle is closed, the application is closed or a certain time...
Just leaving a comment here, based on your planning doc: > types cannot represent non-UTF8 filenames [This](https://crates.io/crates/bstr) crate might be what you want to use instead.
Also supporting a suspend option, if you really need it fast, add an option to disable accessing the content. Because you *need* to react fast for CSAM.
Just had this issue, after 2.5.1 upgrade got asked for ~12 entres on a SSO page. Accidentally allowed them, now had to go through each entry and remove it. Even...
Yeah I also now only had the choice to disable the stuff for all 12 credentials and go with auto-type.
This would be really useful. I've some tasks to start daily from a certain time. Currently I've much boilerplate code which breaks with every chrono release just to parse a...
What OS is this running on ?