kennytm
kennytm
@yaahc @mystor Yes there is an implicit second lifetime in `&mut Request
Note that @withoutboats proposed to stabilize `Error::backtrace` in rust-lang/rust#72981.
> Formatting to a string cannot fail at all beyond memory allocation. technically it can panic if the `fmt` impl returned an error ```rust use std::fmt; struct Y; impl fmt::Debug...
sounds like what you really want is a *`proc_macro` API* compiling the format string, similar to #3200.
There's no way we would use the syntax `clone |...| ...`, as it is ambiguous with the `|` and `||` operators. ```rust let clone = false; let bool_var = true;...
Does it make sense to support this? ```rust impl Handler for Foo { trait Arg = 'static; } ```
@Centril something about this ```rust trait PointerFamily { trait Bounds; type Pointer; } struct ConstPtrFamily; impl PointerFamily for ConstPtrFamily { trait Bounds = Copy + Ord + Hash + UnwindSafe...
see also #1918 (postponed) for the previous attempt at `'unsafe`
Plan: 1. Generate a W=150 TPC-C sample (size ~12 GB) or SF=10 TPC-H sample (size ~10 GB) 2. Run Lightning. 3. Verify.
Please use `myloader` for now. To support Lightning (TiDB backend) for MySQL, the first step is to generalize https://github.com/pingcap/tidb-lightning/blob/2644a194f087372ba94a73df90d5373c00da0b19/lightning/restore/tidb.go#L86-L90 to recognize which variable is causing the "Unknown system variable" error...