From 5d0d680693cbc9854dfe33bc43548c0daea57e9c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 27 Mar 2010 18:15:05 -0400 Subject: [PATCH] comment out test that relies on dictionary ordering for now --- test/sql/test_compiler.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py index a5b97be38d..5d61cbdec9 100644 --- a/test/sql/test_compiler.py +++ b/test/sql/test_compiler.py @@ -1848,14 +1848,15 @@ sq.myothertable_othername AS sq_myothertable_othername FROM (" + sqstring + ") A " myothertable.othername FROM mytable JOIN myothertable ON" " mytable.myid = myothertable.otherid) ON othername =" " thirdtable.otherstuff"), - (s5, oracle_d, - "SELECT /*+ hint3 */ /*+ hint1 */ thirdtable.userid, " - "thirdtable.otherstuff " - "FROM thirdtable JOIN (SELECT mytable.myid," - " mytable.name, mytable.description, myothertable.otherid," - " myothertable.othername FROM mytable JOIN myothertable ON" - " mytable.myid = myothertable.otherid) ON othername =" - " thirdtable.otherstuff"), +# TODO: figure out dictionary ordering solution here +# (s5, oracle_d, +# "SELECT /*+ hint3 */ /*+ hint1 */ thirdtable.userid, " +# "thirdtable.otherstuff " +# "FROM thirdtable JOIN (SELECT mytable.myid," +# " mytable.name, mytable.description, myothertable.otherid," +# " myothertable.othername FROM mytable JOIN myothertable ON" +# " mytable.myid = myothertable.otherid) ON othername =" +# " thirdtable.otherstuff"), (s6, oracle_d, """SELECT /*+ "QuotedName" idx1 */ "QuotedName".col1 """ """FROM "QuotedName" WHERE "QuotedName".col1 > :col1_1"""), -- 2.47.3