res
)
+ # TODO: how on earth does mysqlconnector pass the precision numeric
+ # testse in the generic suite when it fails this??
+ @testing.fails_on(
+ "mysql+mysqlconnector",
+ "unknown issue, possible bug in mysqlconnector")
@testing.provide_metadata
def test_precision_float_roundtrip(self):
t = Table('t', self.metadata,
Column('scale_value', mysql.DOUBLE(
- precision=15, scale=12, asdecimal=True)),
+ precision=15, scale=12, asdecimal=True)),
Column('unscale_value', mysql.DOUBLE(
- decimal_return_scale=12, asdecimal=True))
+ decimal_return_scale=12, asdecimal=True))
)
t.create(testing.db)
testing.db.execute(
res
)
- @testing.only_if('mysql+mysqldb')
+ @testing.only_if('mysql')
+ @testing.fails_on('mysql+mysqlconnector', "different unicode behavior")
@testing.exclude('mysql', '<', (5, 0, 5), 'a 5.0+ feature')
@testing.provide_metadata
def test_charset_collate_table(self):
datetime.time(8, 37, 35, 450)
)
+ @testing.fails_on("mysql+oursql", "TODO: probable OurSQL bug")
@testing.provide_metadata
def test_time_roundtrip(self):
t = Table('mysql_time', self.metadata,