|
@@ -564,7 +564,7 @@ c:long | gender:keyword | trunk_worked_seconds:long
|
|
|
0 | null | 200000000
|
|
|
;
|
|
|
|
|
|
-// the query is incorrectly physically plan (fails the verification) in pre-8.13.0 versions
|
|
|
+// the query is incorrectly physically planned (fails the verification) in pre-8.13.0 versions
|
|
|
byStringAndLongWithAlias#[skip:-8.12.99]
|
|
|
FROM employees
|
|
|
| EVAL trunk_worked_seconds = avg_worked_seconds / 100000000 * 100000000
|
|
@@ -720,7 +720,8 @@ c:long | d:date | gender:keyword | languages:integer
|
|
|
2 | 1987-01-01T00:00:00.000Z | M | 1
|
|
|
;
|
|
|
|
|
|
-byDateAndKeywordAndIntWithAlias
|
|
|
+// the query is incorrectly physically planned (fails the verification) in pre-8.13.0 versions
|
|
|
+byDateAndKeywordAndIntWithAlias#[skip:-8.12.99]
|
|
|
from employees | eval d = date_trunc(1 year, hire_date) | rename gender as g, languages as l, emp_no as e | keep d, g, l, e | stats c = count(e) by d, g, l | sort c desc, d, l desc, g desc | limit 10;
|
|
|
|
|
|
c:long | d:date | g:keyword | l:integer
|