| Server IP : 45.40.142.9 / Your IP : 216.73.216.250 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/mysql-test/suite/ndb/r/ |
Upload File : |
DROP TABLE IF EXISTS t0; drop database if exists mysqltest; Running ndbapi_simple Running ndbapi_simple_index Running ndbapi_scan Running ndbapi_retries Running ndbapi_async Running ndbapi_async1 use TEST_DB; create table t0(c0 int, c1 int, c2 char(4), c3 char(4), c4 text, primary key(c0, c2)) engine ndb charset latin1; insert into t0 values (1, 2, 'a', 'b', null); insert into t0 values (3, 4, 'c', 'd', null); update t0 set c3 = 'e' where c0 = 1 and c2 = 'a'; update t0 set c3 = 'f'; update t0 set c3 = 'F'; update t0 set c2 = 'g' where c0 = 1; update t0 set c2 = 'G' where c0 = 1; update t0 set c0 = 5, c2 = 'H' where c0 = 3; delete from t0; drop table t0; drop database TEST_DB; drop database TEST_DB_1; Running mgmapi_logevent