Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add skip tags to three tests to prevent them from being run on versions older than 8.13.0 #104780

Merged
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ from employees | where birth_date > now() | sort emp_no asc | keep emp_no, birth
emp_no:integer | birth_date:date
;

autoBucketYearInAgg
autoBucketYearInAgg#[skip:-8.12.99, reason:date type is supported in 8.13]
FROM employees
| WHERE hire_date >= "1999-01-01T00:00:00Z"
| EVAL bucket = AUTO_BUCKET(hire_date, 5, "1999-01-01T00:00:00Z", NOW())
Expand Down Expand Up @@ -917,7 +917,7 @@ FROM employees
//end::docsAutoBucketWeeklyHistogram-result[]
;

docsAutoBucketLast24hr
docsAutoBucketLast24hr#[skip:-8.12.99, reason:date type is supported in 8.13]
//tag::docsAutoBucketLast24hr[]
FROM sample_data
| WHERE @timestamp >= NOW() - 1 day and @timestamp < NOW()
Expand All @@ -929,7 +929,7 @@ FROM sample_data
COUNT(*):long | bucket:date
;

docsGettingStartedAutoBucket
docsGettingStartedAutoBucket#[skip:-8.12.99, reason:date type is supported in 8.13]
// tag::gs-auto_bucket[]
FROM sample_data
| KEEP @timestamp
Expand Down