@@ -94,41 +94,11 @@ Warning 1681 Integer display width is deprecated and will be removed in a future
9494Warning 1681 Integer display width is deprecated and will be removed in a future release.
9595Warning 1681 Integer display width is deprecated and will be removed in a future release.
9696Warning 1681 Integer display width is deprecated and will be removed in a future release.
97- # Bloom filter with complete SK but shorter than bloom filter
98- CREATE TABLE `id_table_bloom` (
99- `id1` bigint(20) NOT NULL DEFAULT '0',
100- `id2` bigint(20) NOT NULL DEFAULT '0',
101- `id3` bigint(11) NOT NULL DEFAULT '0',
102- `val` bigint(20) NOT NULL DEFAULT '0',
103- PRIMARY KEY (`id1`, `id2`),
104- KEY `id3` (`id3`) COMMENT 'cf_link',
105- UNIQUE KEY `unique_id3` (`id3`) COMMENT 'cf_link'
106- ) ENGINE=ROCKSDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPRESSED
107- KEY_BLOCK_SIZE=8;
108- Warnings:
97+ Warnings:
10998Warning 1681 Integer display width is deprecated and will be removed in a future release.
11099Warning 1681 Integer display width is deprecated and will be removed in a future release.
111100Warning 1681 Integer display width is deprecated and will be removed in a future release.
112101Warning 1681 Integer display width is deprecated and will be removed in a future release.
113- INSERT INTO id_table_bloom values (1, 1, 1, 101);
114- INSERT INTO id_table_bloom values (1, 2, 2, 102);
115- INSERT INTO id_table_bloom values (1, 3, 3, 103);
116- INSERT INTO id_table_bloom values (1, 4, 4, 104);
117- CREATE TABLE `link_table7` (
118- `id1` bigint(20) unsigned NOT NULL DEFAULT '0' ,
119- `id1_type` int(10) unsigned NOT NULL DEFAULT '0' ,
120- `id2` bigint(20) unsigned NOT NULL DEFAULT '0' ,
121- `id2_type` int(10) unsigned NOT NULL DEFAULT '0' ,
122- `link_type` bigint(20) unsigned NOT NULL DEFAULT '0' ,
123- `visibility` tinyint(3) NOT NULL DEFAULT '0' ,
124- `data` varchar(255) COLLATE latin1_bin NOT NULL DEFAULT '' ,
125- `time` int(10) unsigned NOT NULL DEFAULT '0' ,
126- `version` bigint(20) unsigned NOT NULL DEFAULT '0' ,
127- PRIMARY KEY (`link_type` , `id1` , `id2`) COMMENT 'cf_link' ,
128- KEY `id1_type` (`id1`,`link_type`,`visibility`,`time`,`id2`,`version`,`data`)
129- COMMENT 'rev:cf_link_id1_type'
130- ) ENGINE=ROCKSDB DEFAULT CHARSET=latin1 COLLATE=latin1_bin
131- ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=8;
132102Warnings:
133103Warning 1681 Integer display width is deprecated and will be removed in a future release.
134104Warning 1681 Integer display width is deprecated and will be removed in a future release.
@@ -138,36 +108,6 @@ Warning 1681 Integer display width is deprecated and will be removed in a future
138108Warning 1681 Integer display width is deprecated and will be removed in a future release.
139109Warning 1681 Integer display width is deprecated and will be removed in a future release.
140110Warning 1681 Integer display width is deprecated and will be removed in a future release.
141- insert into link_table7 values (9223372036854775807, 100, 9223372036854775801,
142- 100, 9223372036854775807, 0,
143- 'data1', 1234561, 9223372036854775801);
144- insert into link_table7 values (9223372036854775807, 100, 1223372036854775802,
145- 100, 9223372036854775807, 0,
146- '0123456789012345678901234567890123456789012345678901234567890123456789'
147- '0123456789012345678901234567890123456789012345678901234567890123456789'
148- '0123456789012345678901234567890123456789012345678901234567890123456789'
149- '0123456789012345678901234567890', 1234562, 9223372036854775802);
150- insert into link_table7 values (9223372036854775807, 100, 1223372036854775803,
151- 100, 9223372036854775807, 0,
152- '0123456789012345678901234567890123456789012345678901234567890123456789'
153- '0123456789012345678901234567890123456789012345678901234567890123456789'
154- '0123456789012345678901234567890123456789012345678901234567890123456789'
155- '0123456789012345678901234567890', 1234563, 9223372036854775803);
156- CREATE TABLE `link_table8` (
157- `id1` bigint(20) unsigned NOT NULL DEFAULT '0' ,
158- `id1_type` int(10) unsigned NOT NULL DEFAULT '0' ,
159- `id2` bigint(20) unsigned NOT NULL DEFAULT '0' ,
160- `id2_type` int(10) unsigned NOT NULL DEFAULT '0' ,
161- `link_type` bigint(20) unsigned NOT NULL DEFAULT '0' ,
162- `visibility` tinyint(3) NOT NULL DEFAULT '0' ,
163- `data` varchar(255) COLLATE latin1_bin NOT NULL DEFAULT '' ,
164- `time` int(10) unsigned NOT NULL DEFAULT '0' ,
165- `version` bigint(20) unsigned NOT NULL DEFAULT '0' ,
166- PRIMARY KEY (`link_type` , `id1` , `id2`) COMMENT 'cf_link' ,
167- KEY `id1_type` (`id1`,`link_type`,`visibility`,`time`,`id2`,`version`,`data`)
168- COMMENT 'rev:cf_link_id1_type'
169- ) ENGINE=ROCKSDB DEFAULT CHARSET=latin1 COLLATE=latin1_bin
170- ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=8;
171111Warnings:
172112Warning 1681 Integer display width is deprecated and will be removed in a future release.
173113Warning 1681 Integer display width is deprecated and will be removed in a future release.
@@ -177,31 +117,6 @@ Warning 1681 Integer display width is deprecated and will be removed in a future
177117Warning 1681 Integer display width is deprecated and will be removed in a future release.
178118Warning 1681 Integer display width is deprecated and will be removed in a future release.
179119Warning 1681 Integer display width is deprecated and will be removed in a future release.
180- insert into link_table8 values (1, 0x03030303, 1, 0, 100, 0, 'data1', 0, 0);
181- CREATE TABLE `meta_table` (
182- `lvid` int(10) unsigned NOT NULL DEFAULT '0',
183- `mt_object_type` int(10) unsigned NOT NULL DEFAULT '0',
184- `id` bigint(20) unsigned NOT NULL DEFAULT '0',
185- `mt_object_cookie` bigint(20) unsigned NOT NULL DEFAULT '0',
186- `mt_alt_key_data` varchar(255) COLLATE latin1_bin NOT NULL DEFAULT '',
187- `mt_total_size` bigint(20) unsigned NOT NULL DEFAULT '0',
188- `mt_object_type2` int(10) unsigned NOT NULL DEFAULT '0',
189- `mt_object_state` smallint(5) unsigned NOT NULL DEFAULT '0',
190- `context` varchar(255) COLLATE latin1_bin NOT NULL DEFAULT '',
191- `mt_ref` bigint(20) DEFAULT NULL,
192- `mt_key` varbinary(80) DEFAULT NULL,
193- `mt_ctime` int(10) NOT NULL DEFAULT '0',
194- `mt_rtime` int(10) NOT NULL DEFAULT '0',
195- `policy_id` tinyint(3) unsigned DEFAULT NULL,
196- `policy` bigint(20) unsigned DEFAULT NULL,
197- `parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
198- `ttl` int(10) DEFAULT NULL,
199- `mt_last_update` int(10) unsigned NOT NULL DEFAULT '0',
200- PRIMARY KEY (`lvid`,`id`),
201- KEY `key1` (`lvid`,`mt_object_state`,`mt_key`(1)),
202- KEY `key2` (`lvid`,`mt_last_update`)
203- ) ENGINE=ROCKSDB DEFAULT CHARSET=latin1 COLLATE=latin1_bin
204- ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=8;
205120Warnings:
206121Warning 1681 Integer display width is deprecated and will be removed in a future release.
207122Warning 1681 Integer display width is deprecated and will be removed in a future release.
@@ -218,19 +133,10 @@ Warning 1681 Integer display width is deprecated and will be removed in a future
218133Warning 1681 Integer display width is deprecated and will be removed in a future release.
219134Warning 1681 Integer display width is deprecated and will be removed in a future release.
220135Warning 1681 Integer display width is deprecated and will be removed in a future release.
221- INSERT INTO meta_table VALUES (100, 0, 1, 0, 'data1', 1, 2, 3, 'context1',
222- 1, 0x1, 1, 1, 1, 1, 1, 0, 0);
223- INSERT INTO meta_table VALUES (100, 0, 2, 0, 'data2', 1, 2, 3, 'context2',
224- 1, 0x1, 1, 1, 1, 1, 1, 0, 0);
225- INSERT INTO meta_table VALUES (100, 0, 3, 0, 'data3', 1, 2, 3, 'context3',
226- 1, 0x1, 1, 1, 1, 1, 1, 0, 0);
227- INSERT INTO meta_table VALUES (100, 0, 4, 0, 'data4', 1, 2, 3, 'context4',
228- 1, 0x1, 1, 1, 1, 1, 1, 0, 0);
229- INSERT INTO meta_table VALUES (101, 0, 1, 0, 'data1', 1, 2, 3, 'context1',
230- 1, 0x1, 1, 1, 1, 1, 1, 0, 0);
231136INSTALL PLUGIN test_bypass_rpc_plugin_info SONAME 'TEST_BYPASS_RPC_PLUGIN';
232137UNINSTALL PLUGIN test_bypass_rpc_plugin_info;
233138DROP TABLE id_table_bloom;
234139DROP TABLE link_table7;
235140DROP TABLE link_table8;
236141DROP TABLE meta_table;
142+ DROP TABLE obj_info;
0 commit comments