Remove test_SET() since it cannot work until

http://bugs.mysql.com/bug.php?id=17758 is fixed
(MySQL-5.1 or 5.2).
This commit is contained in:
adustman
2007-02-10 04:06:10 +00:00
parent 21fd87afe8
commit 31af680d14

View File

@ -36,19 +36,6 @@ class test_MySQLdb(test_capabilities.DatabaseTest):
self.check_data_integrity(
('col1 TINYINT',),
generator)
def test_SET(self):
things = 'ash birch cedar larch pine'.split()
def generator(row, col):
from sets import Set
s = Set()
for i in range(len(things)):
if (row >> i) & 1:
s.add(things[i])
return s
self.check_data_integrity(
('col1 SET(%s)' % ','.join(["'%s'" % t for t in things]),),
generator)
def test_stored_procedures(self):
db = self.connection