1--- /data/src/bb-10.2-mdev12528/mysql-test/suite/storage_engine/truncate_table.result	2017-06-22 00:33:46.423995639 +0300
2+++ /data/src/bb-10.2-mdev12528/mysql-test/suite/storage_engine/truncate_table.reject	2017-06-22 02:43:27.183946733 +0300
3@@ -29,13 +29,12 @@
4 CREATE TABLE t1 (a <INT_COLUMN>, b <CHAR_COLUMN>) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>;
5 INSERT INTO t1 (a,b) VALUES (1,'a'),(2,'b'),(3,'c');
6 HANDLER t1 OPEN AS h1;
7-HANDLER h1 READ FIRST;
8-a	b
9-1	a
10-TRUNCATE TABLE t1;
11-HANDLER h1 READ NEXT;
12-ERROR 42S02: Unknown table 'h1' in HANDLER
13-HANDLER t1 OPEN AS h2;
14-HANDLER h2 READ FIRST;
15-a	b
16+ERROR HY000: Storage engine ROCKSDB of the table `test`.`t1` doesn't have this option
17+# ------------ UNEXPECTED RESULT ------------
18+# The statement|command finished with ER_ILLEGAL_HA.
19+# HANDLER or the syntax or the mix could be unsupported.
20+# You can change the engine code, or create an rdiff, or disable the test by adding it to disabled.def.
21+# Further in this test, the message might sometimes be suppressed; a part of the test might be skipped.
22+# Also, this problem may cause a chain effect (more errors of different kinds in the test).
23+# -------------------------------------------
24 DROP TABLE t1;
25