From: Mike Bayer Date: Fri, 8 Aug 2014 18:40:44 +0000 (-0400) Subject: oursql seems to handle this? unclear, might be dependent on mysql version X-Git-Tag: rel_1_0_0b1~248 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f7cc3595ef28156c3b1e640510858608f328e4b2;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git oursql seems to handle this? unclear, might be dependent on mysql version --- diff --git a/test/dialect/mysql/test_types.py b/test/dialect/mysql/test_types.py index 1735202167..a52f36e113 100644 --- a/test/dialect/mysql/test_types.py +++ b/test/dialect/mysql/test_types.py @@ -655,13 +655,7 @@ class EnumSetTest(fixtures.TestBase, AssertsExecutionResults, AssertsCompiledSQL res = set_table.select().execute().fetchall() - if testing.against("+oursql"): - expected = [ - # 1st row with all c's, data truncated - (set(['']), set(['']), set(['']), set(['']), None), - ] - else: - expected = [] + expected = [] expected.extend([ (set(['a']), set(['a']), set(['a']), set(["'a'"]), set(['a', 'b'])),