Rushmore Mushambi

Results 54 comments of Rushmore Mushambi

> As a result, an index on a field doesn't necessarily know the type of that field, or know that all values in that field are of a certain type....

@chrisabruce `grpcio-sys` is not compatible with GCC 11. It builds fine with GCC 10. If all you want is a newer binary, you can install the nightly one:- ``` curl...

Hi @tobiemh Do you mean in the flake or in the crate? If you mean in the flake then yes both TiKV and FoundationDB features are included in the binary...

Is that so? Isn't it already included in the binaries installed from https://surrealdb.com/install? I figured you would want to support all the supported KV stores in your binaries so that...

I guess you are referring to the `no such file` messages that get thrown when a dynamically linked binary fails to find its library, right? If so, that's not a...

> surreal: error while loading shared libraries: libfdb_c.so That's what I thought. This shouldn't be a problem with Nix packages. If a dynamically linked binary is installed using `nix` it...

> The binaries all built fine in GitHub Actions, but they wouldn't run on any users' machines. Were you building those with `musl`?

> What we need to do is create a separate binary which has FoundationDB, and just for linux-x86_64. I also plan to enable `storage-fdb` only on `x86_64-linux`. That's what I'm...

> What we need to do is create a separate binary which has FoundationDB, and just for linux-x86_64. On that short todo list in the PR message I have plans...

@tobiemh Building static binaries on Nix doesn't work right now due to https://github.com/alexcrichton/openssl-src-rs/issues/155. Edit: Just when I was about to give up on `musl`, I found the `OPENSSL_NO_VENDOR` workaround that...