tokudb_fast_update_int.test 18.5 KB
Newer Older
1 2
# generated by tokudb_fast_update_int.py
source include/have_tokudb.inc;
3
source include/have_innodb.inc;
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t;
enable_warnings;
create table t (
    id tinyint  null primary key,
    x tinyint  null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
32
update t set x=x+1 where id=100;
33 34 35
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
36
update t set x=x+1 where 1 <= id and id < 100;
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id tinyint  not null primary key,
    x tinyint  not null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
65
update t set x=x+1 where id=100;
66 67 68
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
69
update t set x=x+1 where 1 <= id and id < 100;
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id tinyint unsigned null primary key,
    x tinyint unsigned null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
98
update t set x=x+1 where id=100;
99 100 101
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
102
update t set x=x+1 where 1 <= id and id < 100;
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id tinyint unsigned not null primary key,
    x tinyint unsigned not null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
131
update t set x=x+1 where id=100;
132 133 134
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
135
update t set x=x+1 where 1 <= id and id < 100;
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id smallint  null primary key,
    x smallint  null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
164
update t set x=x+1 where id=100;
165 166 167
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
168
update t set x=x+1 where 1 <= id and id < 100;
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id smallint  not null primary key,
    x smallint  not null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
197
update t set x=x+1 where id=100;
198 199 200
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
201
update t set x=x+1 where 1 <= id and id < 100;
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id smallint unsigned null primary key,
    x smallint unsigned null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
230
update t set x=x+1 where id=100;
231 232 233
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
234
update t set x=x+1 where 1 <= id and id < 100;
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id smallint unsigned not null primary key,
    x smallint unsigned not null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
263
update t set x=x+1 where id=100;
264 265 266
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
267
update t set x=x+1 where 1 <= id and id < 100;
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id mediumint  null primary key,
    x mediumint  null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
296
update t set x=x+1 where id=100;
297 298 299
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
300
update t set x=x+1 where 1 <= id and id < 100;
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id mediumint  not null primary key,
    x mediumint  not null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
329
update t set x=x+1 where id=100;
330 331 332
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
333
update t set x=x+1 where 1 <= id and id < 100;
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id mediumint unsigned null primary key,
    x mediumint unsigned null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
362
update t set x=x+1 where id=100;
363 364 365
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
366
update t set x=x+1 where 1 <= id and id < 100;
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id mediumint unsigned not null primary key,
    x mediumint unsigned not null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
395
update t set x=x+1 where id=100;
396 397 398
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
399
update t set x=x+1 where 1 <= id and id < 100;
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id int  null primary key,
    x int  null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
428
update t set x=x+1 where id=100;
429 430 431
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
432
update t set x=x+1 where 1 <= id and id < 100;
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id int  not null primary key,
    x int  not null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
461
update t set x=x+1 where id=100;
462 463 464
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
465
update t set x=x+1 where 1 <= id and id < 100;
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id int unsigned null primary key,
    x int unsigned null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
494
update t set x=x+1 where id=100;
495 496 497
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
498
update t set x=x+1 where 1 <= id and id < 100;
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id int unsigned not null primary key,
    x int unsigned not null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
527
update t set x=x+1 where id=100;
528 529 530
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
531
update t set x=x+1 where 1 <= id and id < 100;
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id bigint  null primary key,
    x bigint  null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
560
update t set x=x+1 where id=100;
561 562 563
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
564
update t set x=x+1 where 1 <= id and id < 100;
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id bigint  not null primary key,
    x bigint  not null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
593
update t set x=x+1 where id=100;
594 595 596
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
597
update t set x=x+1 where 1 <= id and id < 100;
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id bigint unsigned null primary key,
    x bigint unsigned null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
626
update t set x=x+1 where id=100;
627 628 629
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
630
update t set x=x+1 where 1 <= id and id < 100;
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;
create table t (
    id bigint unsigned not null primary key,
    x bigint unsigned not null
);
insert into t values (1,0),(2,0),(3,0);
select * from t;
set tokudb_enable_fast_update=1;
set tokudb_disable_slow_update=1;
update t set x=100 where id=2;
select * from t;
update t set x=x+1 where id=3;
select * from t;
update t set x=x-1 where id=3;
select * from t;
update t set x=x+100 where id=3;
select * from t;
update t set x=x-100 where id=3;
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=1+x where id=1;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=-x where id=1;
659
update t set x=x+1 where id=100;
660 661 662
select * from t;
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
663
update t set x=x+1 where 1 <= id and id < 100;
664 665 666 667
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
error ER_UNSUPPORTED_EXTENSION;
update t set x=x+1;
drop table t;