We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67091c5 commit 213ecbfCopy full SHA for 213ecbf
quickwit/quickwit-doc-mapper/src/default_doc_mapper/mapping_tree.rs
@@ -314,14 +314,13 @@ impl LeafType {
314
315
fn supported_for_concat(&self) -> bool {
316
use LeafType::*;
317
- matches!(self, Text(_) | U64(_) | I64(_) | Bool(_) | Json(_))
+ matches!(self, Text(_) | U64(_) | I64(_) | F64(_) | Bool(_) | Json(_))
318
/*
319
- // will be supported if possible
320
- DateTime(_),
+ // Since concat is a JSON field, anything that JSON supports can be supported
+ DateTime(_), // Could be supported if the date is converted to Rfc3339
321
IpAddr(_),
322
// won't be supported
323
Bytes(_),
324
- F64(_),
325
*/
326
}
327
0 commit comments