Skip to content

Commit

Permalink
TEIID-5468 correcting the back port of the test
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Sep 13, 2018
1 parent 9235e9f commit d1669b1
Showing 1 changed file with 0 additions and 10 deletions.
Expand Up @@ -224,16 +224,6 @@ public class TestOrderByProcessing {
helpTestNullOrdering(sql, result);
}

/**
* Make sure it works for window function ordering
* @throws Exception
*/
@Test public void testNullOrdering7() throws Exception {
String sql = "select string_agg(e1, ',') over (order by e1) from pm1.g1";
String result = "SELECT STRING_AGG(g_0.e1, ',') OVER (ORDER BY g_0.e1 NULLS FIRST) FROM g1 AS g_0";
helpTestNullOrdering(sql, result);
}

private void helpTestNullOrdering(String sql, String result)
throws TeiidComponentException, TeiidProcessingException {
FakeCapabilitiesFinder capFinder = new FakeCapabilitiesFinder();
Expand Down

0 comments on commit d1669b1

Please sign in to comment.