1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

#1169: Add --exec command to mysqltest

This commit is contained in:
unknown
2003-09-24 16:13:47 +05:00
parent 272b8d2485
commit 9e2b97fb25
4 changed files with 100 additions and 0 deletions

View File

@ -0,0 +1,17 @@
DROP TABLE IF EXISTS t1;
CREATE TABLE t1(a int);
INSERT INTO t1 VALUES (1), (2);
<?xml version="1.0"?>
<mysqldump>
<database name="test">
<table name="t1">
<row>
<field name="a">1</field>
</row>
<row>
<field name="a">2</field>
</row>
</table>
</database>
</mysqldump>
DROP TABLE t1;