1
2
3
4
5
6
7
//! Performing full SQL-style joins in a distributed system like Elasticsearch is prohibitively
//! expensive. Instead, Elasticsearch offers two forms of join which are designed to scale
//! horizontally.

mod nested_query;

pub use self::nested_query::*;