Simon Liu
Simon Liu
In some cases, it is necessary to return to the user the value of a calculation error (e.g. div/0), which is not represented in Decimal.
I read the code of clickhouse-rs and found that after setting the capacity in Block::with_capacity, the later code does not use it. Shouldn't this be changed here? ``` cpp ///...
I wrote a library myself, he can compile as a static library or a dynamic library, if I compile as a dynamic library, I rely on the following libraries from...
The index of an array in ClickHouse can be an function such as : ```sql string.values[indexOf(string.names, 'endpoint')]='/health' ``` PS: If sqlparser wants to support this syntax,I can submit a PR...
For example if I use the same pool object in multiple tokio tasks will there be undefined behavior. Or should I share the connection through Arc in different tasks, or...
For example the following code I just want to parse the hashmap: `let v:HashMap = toml::from_str(r#"{biz= "b1", type= "t1"}")`
Add linux accept4() support.
https://pytorch.org/docs/stable/generated/torch.multinomial.html. If it is not implemented, I can implement this interface
This commit refactors the previously separate implementations of arithmetic operations (Add, Sub, Mul, Div) between f64 and Tensor types into a single, reusable macro `impl_f64_tensor_ops`.