Skip to content

Commit dc6f0f9

Browse files
committed
SQL: Re-enable muted test
Close #47080 (cherry picked from commit 63a0aa7)
1 parent f07de06 commit dc6f0f9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

x-pack/plugin/sql/qa/src/main/resources/pivot.csv-spec

+11
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,17 @@ null |48396.28571428572|62140.666666666664
8484
5 |39052.875 |46705.555555555555
8585
;
8686

87+
averageWithOneValueAndLimit
88+
schema::languages:bt|'F':d
89+
SELECT * FROM (SELECT languages, gender, salary FROM test_emp) PIVOT (AVG(salary) FOR gender IN ('F')) LIMIT 3;
90+
91+
languages | 'F'
92+
---------------+------------------
93+
null |62140.666666666664
94+
1 |47073.25
95+
2 |50684.4
96+
;
97+
8798
averageWithTwoValuesAndLimit
8899
schema::languages:bt|'M':d|'F':d
89100
SELECT * FROM (SELECT languages, gender, salary FROM test_emp) PIVOT (AVG(salary) FOR gender IN ('M', 'F')) LIMIT 3;

0 commit comments

Comments
 (0)