mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-16 12:27:03 +08:00
Add a test case for #3514287. Was fixed in 1.2.3.
This commit is contained in:
@ -79,7 +79,18 @@ class test_MySQLdb(capabilities.DatabaseTest):
|
|||||||
self.cursor.execute("describe some_non_existent_table");
|
self.cursor.execute("describe some_non_existent_table");
|
||||||
except self.connection.ProgrammingError, msg:
|
except self.connection.ProgrammingError, msg:
|
||||||
self.assertTrue(msg[0] == ER.NO_SUCH_TABLE)
|
self.assertTrue(msg[0] == ER.NO_SUCH_TABLE)
|
||||||
|
|
||||||
|
def test_bug_3514287(self):
|
||||||
|
c = self.cursor
|
||||||
|
try:
|
||||||
|
c.execute("""create table bug_3541287 (
|
||||||
|
c1 CHAR(10),
|
||||||
|
t1 TIMESTAMP)""")
|
||||||
|
c.execute("insert into bug_3541287 (c1,t1) values (%s, NOW())",
|
||||||
|
("blah",))
|
||||||
|
finally:
|
||||||
|
c.execute("drop table if exists bug_3541287")
|
||||||
|
|
||||||
def test_ping(self):
|
def test_ping(self):
|
||||||
self.connection.ping()
|
self.connection.ping()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user