i have installed mysql-server-4.1.8a-4 and
mysql-client-4.1.8a-4 on Linux 2.6.9
mysql is working correctly;
the rollback is not working :
mysql> insert into tran_test (a,b) values (1,2);
Query OK, 1 row affected (0.01 sec)
mysql> select * from tran_test;
+------+------+
| a | b |
+------+------+
| 1 | 2 |
+------+------+
1 row in set (0.00 sec)
mysql> rollback;
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql> select * from tran_test;
+------+------+
| a | b |
+------+------+
| 1 | 2 |
+------+------+
1 row in set (0.00 sec)
mysql> quit
Normally after the rollback i should get here an empty table !
The AUTOCOMMIT is set off (SET AUTOCOMMIT = 0).
Any idea ?
mysql-client-4.1.8a-4 on Linux 2.6.9
mysql is working correctly;
the rollback is not working :
mysql> insert into tran_test (a,b) values (1,2);
Query OK, 1 row affected (0.01 sec)
mysql> select * from tran_test;
+------+------+
| a | b |
+------+------+
| 1 | 2 |
+------+------+
1 row in set (0.00 sec)
mysql> rollback;
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql> select * from tran_test;
+------+------+
| a | b |
+------+------+
| 1 | 2 |
+------+------+
1 row in set (0.00 sec)
mysql> quit
Normally after the rollback i should get here an empty table !
The AUTOCOMMIT is set off (SET AUTOCOMMIT = 0).
Any idea ?