]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- limit this to sqlite for now
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 30 Mar 2016 22:59:01 +0000 (18:59 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 30 Mar 2016 22:59:01 +0000 (18:59 -0400)
test/sql/test_resultset.py

index 3669390d5ab8e9f36aa3bf9fff1f462b8c1dca61..ba85fb82e342e1e2587879dd2cafe84ff52c95e5 100644 (file)
@@ -1010,6 +1010,7 @@ class ResultProxyTest(fixtures.TablesTest):
         eq_(row[-1], 'Uno')
         eq_(row[1:0:-1], ('Uno',))
 
+    @testing.only_on("sqlite")
     def test_rowproxy_getitem_indexes_raw(self):
         row = testing.db.execute("select 'One' as key, 'Uno' as value").first()
         eq_(row['key'], 'One')