Bruno Bigras
Bruno Bigras
I got: ``` AssertionError: Could not determine version from string 'CockroachDB CCL v21.2.0-beta.4-20-g3061813685 (x86_64-unknown-linux-gnu, built 2021/10/15 07:02:45, go1.16.6)' ``` I wonder if cockroachdb is enough "postgresql-compatible".
I would like a keybinding for lsp-extend-selection but with a fallback in case the language server doesn't support it.
Any plans to make the output in 2 columns like delta and difftastic? In this example, I find the difftastic's version really pretty. delta:  diffsitter:  difftastic: 
Is it possible to simulate a cable being unplugged? It seems timeout stops the data immediately. I would prefer something like, stop all data (and hang for ever) after x...
**Describe the bug** It seems to be a problem when using `futures::executor::block_on`. It's fine if I change `main()` to: ```rust #[async_std::main] async fn main() -> Result { something().await; } ```...
I would like to import data frequently. About every 5 minutes. I would like to track when the data changes, but without filling up `transaction_log` and `table_event_log`. Any ideas?
It's a non-zipped XML.
I got some weird error after using `#[graphql(complex)]` and `#[ComplexObject]` on other struct. So the affected struct doesn't have the "complex" thing. I'm probably using nested `ComplexObject` that uses some...
I'm trying to use [include-postgres-sql](https://crates.io/crates/include-postgres-sql) in my dataloader and I get: ``` `dyn ToSql` cannot be shared between threads safely ``` or ``` the trait `Sync` is not implemented for...
Do I only need to do this? Note that I'm using `.all()` (with tide) otherwise I get "method not allowed". ```rust let schema = Schema::build(Query, Mutation, EmptySubscription) .data(data) .extension(ApolloPersistedQueries::new(LruCacheStorage::new(256))) .finish();...