Open
Description
- Let's add some yaml/csv tests that demonstrate how FROM behaves with wildcards. Esp., when an index is missing, when is a
FROM
query still correct? E.g. if there's an indexindex1
but noindex2
, thenFROM index*
is correct,FROM index1
as well,FROM index1, index2*
probably as well, butFROM index1, index2
as well asFROM index2*
probably are not. - While we're at it, let's make the examples in from.asciidoc use actual csv tests instead of being just written text; this way we'll be sure they are and remain valid.