dennis zhuang

Results 377 comments of dennis zhuang

We don't use libc derectly, but use [nix-0.11.0](https://github.com/nix-rust/nix) such as ```rust let mut fd_set = select::FdSet::new(); let socket_fd = fd; fd_set.insert(socket_fd); ``` Panic at ` fd_set.insert(socket_fd)`.

我想这里主要问题可能是性能上的影响,多了很多判断。 如果你明确需要类型,其实是可以加上类型转换函数的,比如 ```js Math.round(double(a)); ```

这个其实是因为当前的 aviator instance 已经有这个表达式存在了,重复编译加载了,简单可以忽略的。或者你应该能判断某个表达式是否已经编译过,编译过就不要去反序列化了。

4 become leader 后会去探测 follower 的 log 状况,然后发起 append entries 来补上或者更正。

@BohuTANG Do you have time to take a look? 💯

@AntiTopQuark Thanks for your contribution. You need to run `cargo sqlness` to update the results of the flow sqlness tests.

@coderabbitai review

> @killme2008 @waynexia I've created a rough implementation of the `WITHIN` filter: > > My idea is > > 1. Parse `WITHIN` filters, and treats it as functions in the...