-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add earliest/latest to `conditionFunctionBase`. Signed-off-by: currantw <[email protected]> * Update doc and integ tests Signed-off-by: currantw <[email protected]> * Update/fix doc tests Signed-off-by: currantw <[email protected]> * Rename variable Signed-off-by: currantw <[email protected]> * scalafmtAll Signed-off-by: currantw <[email protected]> * Fix failing integ test Signed-off-by: currantw <[email protected]> * More scalafmt. Grrr... Signed-off-by: currantw <[email protected]> --------- Signed-off-by: currantw <[email protected]>
- Loading branch information
Showing
6 changed files
with
185 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{"index": {"_index": "relative_datetime"}} | ||
{"description": "Now", "relative_string": "NOW"} | ||
{"index": {"_index": "relative_datetime"}} | ||
{"description": "Tomorrow", "relative_string": "+D@D"} | ||
{"index": {"_index": "relative_datetime"}} | ||
{"description": "In one month", "relative_string": "+month"} | ||
{"index": {"_index": "relative_datetime"}} | ||
{"description": "Two weeks ago", "relative_string": "-2wk"} | ||
{"index": {"_index": "relative_datetime"}} | ||
{"description": "Yesterday", "relative_string": "-1d@d"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"mappings": { | ||
"properties": { | ||
"description": { | ||
"type": "text" | ||
}, | ||
"relative_string": { | ||
"type": "text" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.