Bruno Bigras

Results 169 issues of 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.

feature-request
ecosystem

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: ![image](https://user-images.githubusercontent.com/24027/126273375-748d0b99-71d9-42c5-97e6-4ca7a87bb84f.png) diffsitter: ![image](https://user-images.githubusercontent.com/24027/126273441-0d5559fc-0838-446f-83b4-06975ce11be2.png) difftastic: ![image](https://user-images.githubusercontent.com/24027/126273541-658c5ec3-0ce3-4ecf-b6d7-2026dec36bfe.png)

enhancement
output

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; } ```...

bug

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?

question

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

bug

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

question

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();...

question