summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2022-03-18 09:47:58 +0100
committerSergei Golubchik <serg@mariadb.org>2022-03-18 09:47:58 +0100
commit5c11e7eead53570e9c17841b7b9da67d332ee8c8 (patch)
tree9f2e33de3ca98c0ba45d6ca9eab041dd5e737798
parent9aea73f74fd86a2dbc70730ebf399fe3ae51efc9 (diff)
downloadmariadb-git-5c11e7eead53570e9c17841b7b9da67d332ee8c8.tar.gz
update test results
-rw-r--r--storage/spider/mysql-test/spider/bugfix/r/index.result6
1 files changed, 5 insertions, 1 deletions
diff --git a/storage/spider/mysql-test/spider/bugfix/r/index.result b/storage/spider/mysql-test/spider/bugfix/r/index.result
index 3ef02f23448..d37258ffae1 100644
--- a/storage/spider/mysql-test/spider/bugfix/r/index.result
+++ b/storage/spider/mysql-test/spider/bugfix/r/index.result
@@ -23,7 +23,7 @@ set spider_same_server_link= on;
#
select @@spider_auto_increment_mode;
@@spider_auto_increment_mode
--1
+0
create or replace table auto_test_local.t (id int primary key) engine=InnoDB;
create or replace table t_sp1 (id int auto_increment, primary key(id desc))
engine=Spider COMMENT='wrapper "mysql", srv "s_1", table "t"';
@@ -63,10 +63,14 @@ insert into auto_test_local.t VALUES (1,'f'),(2,'g'),(3,'j'), (4,'i'),(5,'h');
create table ts (a int, b char(1), primary key(a desc))
engine=spider comment='wrapper "mysql", srv "s_1", table "t"';
set spider_use_handler=3;
+Warnings:
+Warning 1287 '@@spider_use_handler' is deprecated and will be removed in a future release
select a, b from ts where a > 0 and b = 'g' order by a;
a b
2 g
set spider_use_handler=default;
+Warnings:
+Warning 1287 '@@spider_use_handler' is deprecated and will be removed in a future release
select a, b from ts where a > 0 and b = 'g' order by a;
a b
2 g