Xavier Lange
Xavier Lange
That's what I'm seeing, it's not supported. I need to do a query like: ``` curl -XGET http://localhost:9200/my-index/_search?pretty=true -d '{ "query": { "filtered": { "filter": { "bool": { "must": {...
Perhaps my branch has some useful bits for Bool filters: https://github.com/tureus/elastigo Usage: ``` filter := es.Filter() rangeFilter := es.Filter().Range("timestamp", startDate, nil, endDate, nil, "") var boolQuery *es.BoolQuery = es.NewBool() boolQuery.Must(rangeFilter).Should(es.Filter().Term("a_property","foo"))...
I see this issue as well on both `rustup default nightly` and `rustup default stable` rust environments ``` % rustc --version rustc 1.59.0 (9d1b2106e 2022-02-23) ```
Ah, I didn't realize there was a ticket creation shortcut from intellij's help menu. Here's the magic blob it emitted: ``` * **IntelliJ Rust plugin version:** 0.4.165.4438-213 * **Rust toolchain...
Downgrading intellij from `2021.3.2` to `2021.2.4` seems to have cured the problem. I can use the new rust engine.
I will get a newer SDK and rebuild the cross images and try again. Edit same failure mode, just a slight version bump in the `ar` being invoked.
I suppose I want to somehow enforce that the root value of `extra_data` is a `serde_json::Value::Object`. Anyone done that?
It looks like I need to pass in the right version of c++ to get this compiling but I'm not sure _how_ to pass that in: ``` autocxx-reduce --clang-arg='-std=c++17' --problem...
@adetaylor I would appreciate some guidance. or perhaps there's a good spot to reach out to the community?
OK, I will work on a linux environment and rule out the os x flavored stuff. Thanks for the tip 👌