Sam Hughes

Results 129 comments of Sam Hughes

In the sense of a bug fix being made for a new version of RethinkDB, no solution has been. What's your clustering setup and other configuration of RethinkDB? By exact...

We don't even have access to the server for publishing new amd64 releases. I recommend asking the rebirthers to publish arm64 builds for v2.3.x. https://github.com/rebirthdb/rebirthdb

What if you run `nc -l 29015` on one terminal, and then run `echo hello | nc localhost 29015` on another? Does that work?

This doesn't reproduce if I build RethinkDB from source on an Arch VM. I haven't tried the Arch package.

> will this change the behavior of r.uuid? No. > Does this interact / interfere with #364? Hmm. It'd make #364 a lot more useful. With the range-based sharding we...

No, but it would be a good feature idea. Every secondary index that uses a custom function should probably have been a computed column.

The server doesn't act differently with older clients -- every client query is run with the latest reql version. ReQL version numbers internally identify the exact semantic behavior of the...

If you do it, I think @marshall007 's comment about tableRename/dbRename provides the right API. I think putting stuff after `.table()` which does anything besides making changes *inside* the table...

@rajkumarananthu Sure. Generally, implementation for specific commands is in `src/rdb_protocol/terms` with types such as `table_create_term_t` -- look for that as an example.

That's weird, because very early at startup, RethinkDB calls ``` setlocale(LC_ALL, "C"); ``` And a quick run with gdb shows nothing else calling that function. Maybe this is triggered by...