Gus Wynn

Results 24 issues of Gus Wynn

``` #![feature(backtrace)] use anyhow; use thiserror::Error; #[derive(Error, Debug)] enum Gus { #[error("hmm")] Other( #[from] #[backtrace] anyhow::Error, ), } fn main() { use std::error::Error; use std::ops::Deref; println!("{:?}", Gus::from(anyhow::anyhow!("main"))); println!("{:?}", Gus::from(anyhow::anyhow!("main")).backtrace()); println!("{:?}",...

### Motivation ### Tips for reviewer ### Checklist - [ ] This PR has adequate test coverage / QA involvement has been duly considered. - [ ] This PR evolves...

See https://materializeinc.slack.com/archives/CMHDK0DK8/p1654625087694429 - [ ] implement the proposal as outlined in https://github.com/MaterializeInc/materialize/issues/7629 - [ ] Fix the bitwise cases for `INCLUDE OFFSET` introduced in https://github.com/MaterializeInc/materialize/pull/12879

C-feature
A-sql
M-platform-blocker
A-ADAPTER

I followed the instructions on to try to generate a workspace hack in https://github.com/MaterializeInc/materialize, but I get this when I try to `generate` for the first time: ``` 16: std::sys_common::backtrace::__rust_begin_short_backtrace::h456a06d26cbb3bdd...

when i run `RUST_LOG=trace mdbook build` I get: ``` 2021-01-22 08:35:53 [WARN] (mdbook::renderer): Renderer command `../../ci/linkcheck.sh` uses a path relative to the renderer output directory `/Users/azw/repos/rustc-dev-guide/book/linkcheck`. This was previously accepted,...

needs-writeup

I have a chained datastructure that can dereference into a slice quite fast, but remaining requires walking the chain, which is relatively slow. I would hazard a guess that this...

Thank you for taking the time to file a bug report. The following describes some guidelines to creating a minimally useful ticket. Above all else: do not describe your problem,...

This PR implements the core BIR logic, as described in https://github.com/MaterializeInc/materialize/pull/14314, epic: https://github.com/MaterializeInc/materialize/issues/13534. It does NOT implement the source-specific behavior to actually commit offsets, that will come later; instead, it...

Before platform, select's against pg sources had to wait until the snapshot is finished. Currently, select's now instantly return empty. This is a sub-optimal UX, and forces us to deal...

A-STORAGE

### Motivation ### Tips for reviewer ### Checklist - [ ] This PR has adequate test coverage / QA involvement has been duly considered. - [ ] This PR evolves...