Dan Burkert

Results 23 issues of Dan Burkert

Hi there, I wrote a Rust [mmap wrapper](https://github.com/danburkert/mmap) a few months ago, before you had published your crate on crates.io. My implementation is largely the same as yours, the main...

See https://docs.google.com/document/d/1KMRX-G91Aa-Y2FkEaHeeviLRRNblgIahbsk4wA14gRk/view and https://github.com/google/protobuf/issues/272.

enhancement
help wanted

The `google-storage1` APIs use a mix of sync (`std::io`) and async APIs. For instance, the [`upload`](https://docs.rs/google-storage1/latest/google_storage1/api/struct.ObjectInsertCall.html#method.upload) method takes an argument of [`ReadSeek`](https://docs.rs/google-storage1/latest/google_storage1/client/trait.ReadSeek.html) which uses blocking IO, but the method itself...

bug
help wanted

Many of the server.rs tests will fail eventually if run in a loop on OSX. The problem manifests as failed calls to `stream_shutdown` or `client_connected`. The test may also hang...

bug
testing

As of today the master will immediately satisfy client queries, which may result in stale reads during failover scenarios. Diego's thesis goes into detail about the cause and possible solutions...

fcd22a513 introduced the new partitioning formatting, but it misses a case where it could simplify `VALUES < "foo\0"` to `VALUES

Add a construction option for creating `MAP_FIXED` memory maps at a known memory location. CC #20 .

@tarcieri reported this panic, which is coming from the `unwrap` call. It's not clear how/what is going on here, except that perhaps `iter_from` should return a `Result`. Further clarification on...

## Motivation When using prepared statements with Postgres, it's sometimes necessary to provide type hints in order to let the server know the type of statement parameters, particularly when it...

C-enhancement