Mute JdbcCsvSpecIT.testAverageWithOneValueAndLimit

Relates to #47080
This commit is contained in:
Yannick Welsch 2019-09-25 10:34:54 +02:00
parent 48df560593
commit 056ac32738
1 changed files with 0 additions and 12 deletions

View File

@ -82,18 +82,6 @@ null |48396.28571428572|62140.666666666664
5 |39052.875 |46705.555555555555
;
averageWithOneValueAndLimit
schema::languages:bt|'F':d
SELECT * FROM (SELECT languages, gender, salary FROM test_emp) PIVOT (AVG(salary) FOR gender IN ('F')) LIMIT 3;
languages | 'F'
---------------+------------------
null |62140.666666666664
1 |47073.25
2 |50684.4
;
averageWithTwoValuesAndLimit
schema::languages:bt|'M':d|'F':d
SELECT * FROM (SELECT languages, gender, salary FROM test_emp) PIVOT (AVG(salary) FOR gender IN ('M', 'F')) LIMIT 3;