ndb_basic.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:14k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. DROP TABLE IF EXISTS t1,t2,t3,t4,t5,t6,t7;
  2. drop database if exists mysqltest;
  3. CREATE TABLE t1 (
  4. pk1 INT NOT NULL PRIMARY KEY,
  5. attr1 INT NOT NULL,
  6. attr2 INT,
  7. attr3 VARCHAR(10)
  8. ) ENGINE=ndbcluster;
  9. SHOW INDEX FROM t1;
  10. Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
  11. t1 0 PRIMARY 1 pk1 A 0 NULL NULL BTREE
  12. INSERT INTO t1 VALUES (9410,9412, NULL, '9412'), (9411,9413, 17, '9413');
  13. SHOW INDEX FROM t1;
  14. Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
  15. t1 0 PRIMARY 1 pk1 A 2 NULL NULL BTREE
  16. SELECT pk1 FROM t1 ORDER BY pk1;
  17. pk1
  18. 9410
  19. 9411
  20. SELECT * FROM t1 ORDER BY pk1;
  21. pk1 attr1 attr2 attr3
  22. 9410 9412 NULL 9412
  23. 9411 9413 17 9413
  24. SELECT t1.* FROM t1 ORDER BY pk1;
  25. pk1 attr1 attr2 attr3
  26. 9410 9412 NULL 9412
  27. 9411 9413 17 9413
  28. UPDATE t1 SET attr1=1 WHERE pk1=9410;
  29. SELECT * FROM t1 ORDER BY pk1;
  30. pk1 attr1 attr2 attr3
  31. 9410 1 NULL 9412
  32. 9411 9413 17 9413
  33. UPDATE t1 SET pk1=2 WHERE attr1=1;
  34. SELECT * FROM t1 ORDER BY pk1;
  35. pk1 attr1 attr2 attr3
  36. 2 1 NULL 9412
  37. 9411 9413 17 9413
  38. UPDATE t1 SET pk1=pk1 + 1;
  39. SELECT * FROM t1 ORDER BY pk1;
  40. pk1 attr1 attr2 attr3
  41. 3 1 NULL 9412
  42. 9412 9413 17 9413
  43. UPDATE t1 SET pk1=4 WHERE pk1 = 3;
  44. SELECT * FROM t1 ORDER BY pk1;
  45. pk1 attr1 attr2 attr3
  46. 4 1 NULL 9412
  47. 9412 9413 17 9413
  48. DELETE FROM t1;
  49. SELECT * FROM t1;
  50. pk1 attr1 attr2 attr3
  51. INSERT INTO t1 VALUES (9410,9412, NULL, '9412'), (9408, 8765, NULL, '8765'),
  52. (7,8, NULL, NULL), (8,9, NULL, NULL), (9,10, NULL, NULL), (10,11, NULL, NULL), (11,12, NULL, NULL), (12,13, NULL, NULL), (13,14, NULL, NULL);
  53. UPDATE t1 SET attr1 = 9999;
  54. SELECT * FROM t1 ORDER BY pk1;
  55. pk1 attr1 attr2 attr3
  56. 7 9999 NULL NULL
  57. 8 9999 NULL NULL
  58. 9 9999 NULL NULL
  59. 10 9999 NULL NULL
  60. 11 9999 NULL NULL
  61. 12 9999 NULL NULL
  62. 13 9999 NULL NULL
  63. 9408 9999 NULL 8765
  64. 9410 9999 NULL 9412
  65. UPDATE t1 SET attr1 = 9998 WHERE pk1 < 1000;
  66. SELECT * FROM t1 ORDER BY pk1;
  67. pk1 attr1 attr2 attr3
  68. 7 9998 NULL NULL
  69. 8 9998 NULL NULL
  70. 9 9998 NULL NULL
  71. 10 9998 NULL NULL
  72. 11 9998 NULL NULL
  73. 12 9998 NULL NULL
  74. 13 9998 NULL NULL
  75. 9408 9999 NULL 8765
  76. 9410 9999 NULL 9412
  77. UPDATE t1 SET attr1 = 9997 WHERE attr1 = 9999;
  78. SELECT * FROM t1 ORDER BY pk1;
  79. pk1 attr1 attr2 attr3
  80. 7 9998 NULL NULL
  81. 8 9998 NULL NULL
  82. 9 9998 NULL NULL
  83. 10 9998 NULL NULL
  84. 11 9998 NULL NULL
  85. 12 9998 NULL NULL
  86. 13 9998 NULL NULL
  87. 9408 9997 NULL 8765
  88. 9410 9997 NULL 9412
  89. DELETE FROM t1 WHERE pk1 = 9410;
  90. SELECT * FROM t1 ORDER BY pk1;
  91. pk1 attr1 attr2 attr3
  92. 7 9998 NULL NULL
  93. 8 9998 NULL NULL
  94. 9 9998 NULL NULL
  95. 10 9998 NULL NULL
  96. 11 9998 NULL NULL
  97. 12 9998 NULL NULL
  98. 13 9998 NULL NULL
  99. 9408 9997 NULL 8765
  100. DELETE FROM t1;
  101. SELECT * FROM t1;
  102. pk1 attr1 attr2 attr3
  103. INSERT INTO t1 values (1, 4, NULL, NULL), (2, 4, NULL, NULL), (3, 5, NULL, NULL), (4, 4, NULL, NULL), (5, 5, NULL, NULL);
  104. DELETE FROM t1 WHERE attr1=4;
  105. SELECT * FROM t1 order by pk1;
  106. pk1 attr1 attr2 attr3
  107. 3 5 NULL NULL
  108. 5 5 NULL NULL
  109. DELETE FROM t1;
  110. INSERT INTO t1 VALUES (9410,9412, NULL, NULL), (9411, 9413, NULL, NULL);
  111. DELETE FROM t1 WHERE pk1 = 9410;
  112. SELECT * FROM t1;
  113. pk1 attr1 attr2 attr3
  114. 9411 9413 NULL NULL
  115. DROP TABLE t1;
  116. CREATE TABLE t1 (id INT, id2 int) engine=ndbcluster;
  117. INSERT INTO t1 values(3456, 7890);
  118. SELECT * FROM t1;
  119. id id2
  120. 3456 7890
  121. UPDATE t1 SET id=2 WHERE id2=12;
  122. SELECT * FROM t1;
  123. id id2
  124. 3456 7890
  125. UPDATE t1 SET id=1234 WHERE id2=7890;
  126. SELECT * FROM t1;
  127. id id2
  128. 1234 7890
  129. DELETE FROM t1;
  130. INSERT INTO t1 values(3456, 7890), (3456, 7890), (3456, 7890), (3454, 7890);
  131. SELECT * FROM t1 ORDER BY id;
  132. id id2
  133. 3454 7890
  134. 3456 7890
  135. 3456 7890
  136. 3456 7890
  137. DELETE FROM t1 WHERE id = 3456;
  138. SELECT * FROM t1 ORDER BY id;
  139. id id2
  140. 3454 7890
  141. DROP TABLE t1;
  142. CREATE TABLE t1 (
  143. pk1 INT NOT NULL PRIMARY KEY,
  144. attr1 INT NOT NULL
  145. ) ENGINE=NDBCLUSTER;
  146. INSERT INTO t1 values(1, 9999);
  147. DROP TABLE t1;
  148. CREATE TABLE t1 (
  149. pk1 INT NOT NULL PRIMARY KEY,
  150. attr1 INT NOT NULL
  151. ) ENGINE=NDB;
  152. INSERT INTO t1 values(1, 9999);
  153. DROP TABLE t1;
  154. CREATE TABLE t2 (
  155. a bigint unsigned NOT NULL PRIMARY KEY,
  156. b int unsigned not null,
  157. c int unsigned
  158. ) engine=ndbcluster;
  159. CREATE TABLE t3 (
  160. a bigint unsigned NOT NULL,
  161. b bigint unsigned not null,
  162. c bigint unsigned,
  163. PRIMARY KEY(a)
  164. ) engine=ndbcluster;
  165. CREATE TABLE t4 (
  166. a bigint unsigned NOT NULL,
  167. b bigint unsigned not null,
  168. c bigint unsigned NOT NULL,
  169. d int unsigned,
  170. PRIMARY KEY(a, b, c)
  171. ) engine=ndbcluster;
  172. select * from t2 where a = 7 order by b;
  173. a b c
  174. 7 16 5
  175. select * from t2 where a = 7 order by a;
  176. a b c
  177. 7 16 5
  178. select * from t2 where a = 7 order by 2;
  179. a b c
  180. 7 16 5
  181. select * from t2 where a = 7 order by c;
  182. a b c
  183. 7 16 5
  184. select * from t2 where a = 7 and b = 16 order by b;
  185. a b c
  186. 7 16 5
  187. select * from t2 where a = 7 and b = 16 order by a;
  188. a b c
  189. 7 16 5
  190. select * from t2 where a = 7 and b = 17 order by a;
  191. a b c
  192. select * from t2 where a = 7 and b != 16 order by b;
  193. a b c
  194. select * from t2 where a = 7 and b = 16 and c = 5 order by b;
  195. a b c
  196. 7 16 5
  197. select * from t2 where a = 7 and b = 16 and c = 5 order by a;
  198. a b c
  199. 7 16 5
  200. select * from t2 where a = 7 and b = 16 and c = 6 order by a;
  201. a b c
  202. select * from t2 where a = 7 and b != 16 and c = 5 order by b;
  203. a b c
  204. select * from t3 where a = 7 order by b;
  205. a b c
  206. 7 16 5
  207. select * from t3 where a = 7 order by a;
  208. a b c
  209. 7 16 5
  210. select * from t3 where a = 7 order by 2;
  211. a b c
  212. 7 16 5
  213. select * from t3 where a = 7 order by c;
  214. a b c
  215. 7 16 5
  216. select * from t3 where a = 7 and b = 16 order by b;
  217. a b c
  218. 7 16 5
  219. select * from t3 where a = 7 and b = 16 order by a;
  220. a b c
  221. 7 16 5
  222. select * from t3 where a = 7 and b = 17 order by a;
  223. a b c
  224. select * from t3 where a = 7 and b != 16 order by b;
  225. a b c
  226. select * from t4 where a = 7 order by b;
  227. a b c d
  228. 7 16 5 26007
  229. select * from t4 where a = 7 order by a;
  230. a b c d
  231. 7 16 5 26007
  232. select * from t4 where a = 7 order by 2;
  233. a b c d
  234. 7 16 5 26007
  235. select * from t4 where a = 7 order by c;
  236. a b c d
  237. 7 16 5 26007
  238. select * from t4 where a = 7 and b = 16 order by b;
  239. a b c d
  240. 7 16 5 26007
  241. select * from t4 where a = 7 and b = 16 order by a;
  242. a b c d
  243. 7 16 5 26007
  244. select * from t4 where a = 7 and b = 17 order by a;
  245. a b c d
  246. select * from t4 where a = 7 and b != 16 order by b;
  247. a b c d
  248. delete from t2 where a > 5;
  249. select x1.a, x1.b from t2 x1, t2 x2 where x1.b = x2.b order by x1.a;
  250. a b
  251. 1 10
  252. 3 12
  253. 5 14
  254. select a, b FROM t2 outer_table where
  255. a = (select a from t2 where b = outer_table.b ) order by a;
  256. a b
  257. 1 10
  258. 3 12
  259. 5 14
  260. delete from t2;
  261. delete from t3;
  262. delete from t4;
  263. drop table t2;
  264. drop table t3;
  265. drop table t4;
  266. CREATE TABLE t5 (
  267. a bigint unsigned NOT NULL,
  268. b bigint unsigned not null,
  269. c bigint unsigned NOT NULL,
  270. d int unsigned,
  271. PRIMARY KEY(a, b, c)
  272. ) engine=ndbcluster;
  273. insert into t5 values(10, 19, 5, 26010);
  274. delete from t5 where a=10 and b=19 and c=5;
  275. select * from t5;
  276. a b c d
  277. insert into t5 values(10, 19, 5, 26010);
  278. update t5 set d=21997 where a=10 and b=19 and c=5;
  279. select * from t5;
  280. a b c d
  281. 10 19 5 21997
  282. delete from t5;
  283. drop table t5;
  284. CREATE TABLE t6 (
  285. adress char(255),
  286. a int NOT NULL PRIMARY KEY,
  287. b int
  288. ) engine = NDB;
  289. insert into t6 values
  290. ("Nice road 3456", 1, 23),
  291. ("Street Road 78", 3, 92),
  292. ("Road street 89C", 5, 71),
  293. (NULL, 7, NULL);
  294. select * from t6 order by a;
  295. adress a b
  296. Nice road 3456 1 23
  297. Street Road 78 3 92
  298. Road street 89C 5 71
  299. NULL 7 NULL
  300. select a, b from t6 order by a;
  301. a b
  302. 1 23
  303. 3 92
  304. 5 71
  305. 7 NULL
  306. update t6 set adress="End of road 09" where a=3;
  307. update t6 set b=181, adress="Street 76" where a=7;
  308. select * from t6 order by a;
  309. adress a b
  310. Nice road 3456 1 23
  311. End of road 09 3 92
  312. Road street 89C 5 71
  313. Street 76 7 181
  314. select * from t6 where a=1;
  315. adress a b
  316. Nice road 3456 1 23
  317. delete from t6 where a=1;
  318. select * from t6 order by a;
  319. adress a b
  320. End of road 09 3 92
  321. Road street 89C 5 71
  322. Street 76 7 181
  323. delete from t6 where b=71;
  324. select * from t6 order by a;
  325. adress a b
  326. End of road 09 3 92
  327. Street 76 7 181
  328. drop table t6;
  329. CREATE TABLE t7 (
  330. adress char(255),
  331. a int NOT NULL,
  332. b int,
  333. c int NOT NULL,
  334. PRIMARY KEY(a, c)
  335. ) engine = NDB;
  336. insert into t7 values
  337. ("Highway 3456", 1, 23, 2),
  338. ("Street Road 78", 3, 92, 3),
  339. ("Main street 89C", 5, 71, 4),
  340. (NULL, 8, NULL, 12);
  341. select * from t7 order by a;
  342. adress a b c
  343. Highway 3456 1 23 2
  344. Street Road 78 3 92 3
  345. Main street 89C 5 71 4
  346. NULL 8 NULL 12
  347. select a, b from t7 order by a;
  348. a b
  349. 1 23
  350. 3 92
  351. 5 71
  352. 8 NULL
  353. update t7 set adress="End of road 09" where a=3;
  354. update t7 set adress="Gatuvägen 90C" where a=5 and c=4;
  355. update t7 set adress="No adress" where adress is NULL;
  356. select * from t7 order by a;
  357. adress a b c
  358. Highway 3456 1 23 2
  359. End of road 09 3 92 3
  360. Gatuvägen 90C 5 71 4
  361. No adress 8 NULL 12
  362. select * from t7 where a=1 and c=2;
  363. adress a b c
  364. Highway 3456 1 23 2
  365. delete from t7 where a=1;
  366. delete from t7 where a=3 and c=3;
  367. delete from t7 where a=5 and c=4;
  368. select * from t7;
  369. adress a b c
  370. No adress 8 NULL 12
  371. delete from t7 where b=23;
  372. select * from t7;
  373. adress a b c
  374. No adress 8 NULL 12
  375. drop table t7;
  376. CREATE TABLE t1 (
  377. pk1 INT NOT NULL PRIMARY KEY,
  378. attr1 INT NOT NULL,
  379. attr2 INT,
  380. attr3 VARCHAR(10)
  381. ) ENGINE=ndbcluster;
  382. INSERT INTO t1 VALUES (9410,9412, NULL, '9412'), (9411,9413, 17, '9413');
  383. create database mysqltest;
  384. use mysqltest;
  385. CREATE TABLE t2 (
  386. a bigint unsigned NOT NULL PRIMARY KEY,
  387. b int unsigned not null,
  388. c int unsigned
  389. ) engine=ndbcluster;
  390. insert into t2 select pk1,attr1,attr2 from test.t1;
  391. select * from t2 order by a;
  392. a b c
  393. 9410 9412 NULL
  394. 9411 9413 17
  395. select b from test.t1, t2 where c = test.t1.attr2;
  396. b
  397. 9413
  398. select b,test.t1.attr1 from test.t1, t2 where test.t1.pk1 < a;
  399. b attr1
  400. 9413 9412
  401. drop table test.t1, t2;
  402. drop database mysqltest;
  403. drop database if exists ndbtest1;
  404. create database ndbtest1;
  405. use ndbtest1;
  406. create table t1(id int) engine=ndbcluster;
  407. drop database ndbtest1;
  408. drop database ndbtest1;
  409. ERROR HY000: Can't drop database 'ndbtest1'; database doesn't exist
  410. use test;
  411. create table t1 (a int primary key, b char(0));
  412. insert into t1 values (1,"");
  413. insert into t1 values (2,NULL);
  414. select * from t1 order by a;
  415. a b
  416. 1
  417. 2 NULL
  418. select * from t1 order by b;
  419. a b
  420. 2 NULL
  421. 1
  422. select * from t1 where b IS NULL;
  423. a b
  424. 2 NULL
  425. select * from t1 where b IS NOT NULL;
  426. a b
  427. 1
  428. drop table t1;
  429. create table t1 (
  430. c1 int,
  431. c2 int,
  432. c3 int,
  433. c4 int,
  434. c5 int,
  435. c6 int,
  436. c7 int,
  437. c8 int,
  438. c9 int,
  439. c10 int,
  440. c11 int,
  441. c12 int,
  442. c13 int,
  443. c14 int,
  444. c15 int,
  445. c16 int,
  446. c17 int,
  447. c18 int,
  448. c19 int,
  449. c20 int,
  450. c21 int,
  451. c22 int,
  452. c23 int,
  453. c24 int,
  454. c25 int,
  455. c26 int,
  456. c27 int,
  457. c28 int,
  458. c29 int,
  459. c30 int,
  460. c31 int,
  461. c32 int,
  462. c33 int,
  463. c34 int,
  464. c35 int,
  465. c36 int,
  466. c37 int,
  467. c38 int,
  468. c39 int,
  469. c40 int,
  470. c41 int,
  471. c42 int,
  472. c43 int,
  473. c44 int,
  474. c45 int,
  475. c46 int,
  476. c47 int,
  477. c48 int,
  478. c49 int,
  479. c50 int,
  480. c51 int,
  481. c52 int,
  482. c53 int,
  483. c54 int,
  484. c55 int,
  485. c56 int,
  486. c57 int,
  487. c58 int,
  488. c59 int,
  489. c60 int,
  490. c61 int,
  491. c62 int,
  492. c63 int,
  493. c64 int,
  494. c65 int,
  495. c66 int,
  496. c67 int,
  497. c68 int,
  498. c69 int,
  499. c70 int,
  500. c71 int,
  501. c72 int,
  502. c73 int,
  503. c74 int,
  504. c75 int,
  505. c76 int,
  506. c77 int,
  507. c78 int,
  508. c79 int,
  509. c80 int,
  510. c81 int,
  511. c82 int,
  512. c83 int,
  513. c84 int,
  514. c85 int,
  515. c86 int,
  516. c87 int,
  517. c88 int,
  518. c89 int,
  519. c90 int,
  520. c91 int,
  521. c92 int,
  522. c93 int,
  523. c94 int,
  524. c95 int,
  525. c96 int,
  526. c97 int,
  527. c98 int,
  528. c99 int,
  529. c100 int,
  530. c101 int,
  531. c102 int,
  532. c103 int,
  533. c104 int,
  534. c105 int,
  535. c106 int,
  536. c107 int,
  537. c108 int,
  538. c109 int,
  539. c110 int,
  540. c111 int,
  541. c112 int,
  542. c113 int,
  543. c114 int,
  544. c115 int,
  545. c116 int,
  546. c117 int,
  547. c118 int,
  548. c119 int,
  549. c120 int,
  550. c121 int,
  551. c122 int,
  552. c123 int,
  553. c124 int,
  554. c125 int,
  555. c126 int,
  556. c127 int,
  557. c128 int,
  558. primary key(c1)) engine=ndb;
  559. drop table t1;
  560. create table t1 (
  561. a1234567890123456789012345678901234567890 int primary key,
  562. a12345678901234567890123456789a1234567890 int,
  563. index(a12345678901234567890123456789a1234567890)
  564. ) engine=ndb;
  565. show tables;
  566. Tables_in_test
  567. t1
  568. insert into t1 values (1,1),(2,1),(3,1),(4,1),(5,2),(6,1),(7,1);
  569. explain select * from t1 where a12345678901234567890123456789a1234567890=2;
  570. id select_type table type possible_keys key key_len ref rows Extra
  571. 1 SIMPLE t1 ref a12345678901234567890123456789a1234567890 a12345678901234567890123456789a1234567890 5 const 10 Using where
  572. select * from t1 where a12345678901234567890123456789a1234567890=2;
  573. a1234567890123456789012345678901234567890 a12345678901234567890123456789a1234567890
  574. 5 2
  575. drop table t1;
  576. create table t1
  577. (a bigint, b bigint, c bigint, d bigint, 
  578. primary key (a,b,c,d)) 
  579. engine=ndb
  580. max_rows=200000000;
  581. Warnings:
  582. Warning 1105 Ndb might have problems storing the max amount of rows specified
  583. insert into t1 values
  584. (1,2,3,4),(2,3,4,5),(3,4,5,6),
  585. (3,2,3,4),(1,3,4,5),(2,4,5,6),
  586. (1,2,3,5),(2,3,4,8),(3,4,5,9),
  587. (3,2,3,5),(1,3,4,8),(2,4,5,9),
  588. (1,2,3,6),(2,3,4,6),(3,4,5,7),
  589. (3,2,3,6),(1,3,4,6),(2,4,5,7),
  590. (1,2,3,7),(2,3,4,7),(3,4,5,8),
  591. (3,2,3,7),(1,3,4,7),(2,4,5,8),
  592. (1,3,3,4),(2,4,4,5),(3,5,5,6),
  593. (3,3,3,4),(1,4,4,5),(2,5,5,6),
  594. (1,3,3,5),(2,4,4,8),(3,5,5,9),
  595. (3,3,3,5),(1,4,4,8),(2,5,5,9),
  596. (1,3,3,6),(2,4,4,6),(3,5,5,7),
  597. (3,3,3,6),(1,4,4,6),(2,5,5,7),
  598. (1,3,3,7),(2,4,4,7),(3,5,5,8),
  599. (3,3,3,7),(1,4,4,7),(2,5,5,8);
  600. select count(*) from t1;
  601. count(*)
  602. 48
  603. drop table t1;
  604. create table t1
  605. (a bigint, b bigint, c bigint, d bigint, 
  606. primary key (a)) 
  607. engine=ndb
  608. max_rows=1;
  609. drop table t1;
  610. create table t1
  611. (counter int(64) NOT NULL auto_increment,
  612. datavalue char(40) default 'XXXX',
  613. primary key (counter)
  614. ) ENGINE=ndbcluster;
  615. insert into t1 (datavalue) values ('newval');
  616. insert into t1 (datavalue) values ('newval');
  617. select * from t1 order by counter;
  618. counter datavalue
  619. 1 newval
  620. 2 newval
  621. insert into t1 (datavalue) select datavalue from t1 where counter < 100;
  622. insert into t1 (datavalue) select datavalue from t1 where counter < 100;
  623. select * from t1 order by counter;
  624. counter datavalue
  625. 1 newval
  626. 2 newval
  627. 3 newval
  628. 4 newval
  629. 5 newval
  630. 6 newval
  631. 7 newval
  632. 8 newval
  633. insert into t1 (datavalue) select datavalue from t1 where counter < 100;
  634. insert into t1 (datavalue) select datavalue from t1 where counter < 100;
  635. select * from t1 order by counter;
  636. counter datavalue
  637. 1 newval
  638. 2 newval
  639. 3 newval
  640. 4 newval
  641. 5 newval
  642. 6 newval
  643. 7 newval
  644. 8 newval
  645. 35 newval
  646. 36 newval
  647. 37 newval
  648. 38 newval
  649. 39 newval
  650. 40 newval
  651. 41 newval
  652. 42 newval
  653. 43 newval
  654. 44 newval
  655. 45 newval
  656. 46 newval
  657. 47 newval
  658. 48 newval
  659. 49 newval
  660. 50 newval
  661. 51 newval
  662. 52 newval
  663. 53 newval
  664. 54 newval
  665. 55 newval
  666. 56 newval
  667. 57 newval
  668. 58 newval
  669. drop table t1;
  670. CREATE TABLE t1 ( b INT ) PACK_KEYS = 0 ENGINE = ndb;
  671. select * from t1;
  672. b
  673. drop table t1;