Yoke

Results 24 comments of Yoke

Can we reorder fields by subscripting the fields? like https://github.com/CeresDB/ceresdb/blob/5c14f0055fb6816793b81bbc50c61b12b3079d5c/server/src/handlers/sql.rs#L201-L207

This looks like the `BTree` needs to be removed, will it infect the storage layer?

maybe I can try to fix this, can it be assigned to me?

I forgot, I'll try adding a few more unit tests later

I checked the rust official documentation, and for the way to build Datum objects from String in datum.rs, rust guarantees that String is a utf8 string, which I might need...

> > rust guarantees that String is a utf8 string, which I might need to modify elsewhere. 😢 > > Yes, I grep the code and find several place contains...

The `from_bytes_unchecked` function will only be called when decoding. I think what I should be looking for is why non-UTF8 characters are saved when encoding. I'll find out later😵