Ignore failing tests (#40994)

This commit is contained in:
Mark Vieira 2019-04-08 21:17:49 -07:00
parent 69421612e5
commit 64c98c632a
No known key found for this signature in database
GPG Key ID: CA947EF7E6D4B105
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ SELECT TRUNCATE(YEAR(TODAY() - INTERVAL 50 YEARS) / 1000) AS result;
;
currentDateFilter
currentDateFilter-Ignore
SELECT first_name FROM test_emp WHERE hire_date > CURRENT_DATE() - INTERVAL 25 YEARS ORDER BY first_name ASC LIMIT 10;
first_name

View File

@ -2400,7 +2400,7 @@ SELECT TODAY() AS result;
// end::todayFunction
;
filterToday
filterToday-Ignore
// tag::filterToday
SELECT first_name FROM emp WHERE hire_date > TODAY() - INTERVAL 25 YEARS ORDER BY first_name ASC LIMIT 5;