Remove a flaky test from columnar_paths

We already knew that it was flaky. Moreover, now it failed on my
branch too.

So removing it with this commit.
pull/5246/head
Onur Tirtir 2021-09-08 14:11:53 +03:00
parent be3914ae28
commit 9935dfb958
2 changed files with 0 additions and 16 deletions

View File

@ -504,16 +504,6 @@ $$
t
(1 row)
SELECT columnar_test_helpers.uses_index_scan (
$$
SELECT a FROM full_anti_correlated WHERE a>2000 AND a<7000 AND b='24';
$$
);
uses_index_scan
---------------------------------------------------------------------
t
(1 row)
SELECT columnar_test_helpers.uses_custom_scan (
$$
SELECT a FROM full_anti_correlated WHERE a<7000 AND b<'10000';

View File

@ -293,12 +293,6 @@ SELECT a FROM full_anti_correlated WHERE a>2000 AND a<7000;
$$
);
SELECT columnar_test_helpers.uses_index_scan (
$$
SELECT a FROM full_anti_correlated WHERE a>2000 AND a<7000 AND b='24';
$$
);
SELECT columnar_test_helpers.uses_custom_scan (
$$
SELECT a FROM full_anti_correlated WHERE a<7000 AND b<'10000';