summaryrefslogtreecommitdiff
path: root/mysql-test/main/subselect_mat_cost.result
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2022-12-12 20:06:32 +0200
committerSergei Petrunia <sergey@mariadb.com>2023-02-03 11:57:50 +0300
commit1f4a9f086ae5ff66a10f84e1fda5bcc38b347883 (patch)
tree6732643cdfce6ad906900819d9327462609285a1 /mysql-test/main/subselect_mat_cost.result
parentb74d2623eb01756d2228921c8c3824f29c7f64fd (diff)
downloadmariadb-git-1f4a9f086ae5ff66a10f84e1fda5bcc38b347883.tar.gz
Removed "<select expression> INTO <destination>" deprication.
This was done after discussions with Igor, Sanja and Bar. The main reason for removing the deprication was to ensure that MariaDB is always backward compatible whenever possible. Other things: - Added statistics counters, mainly for the feedback plugin. - INTO OUTFILE - INTO variable - If INTO is using the old syntax (end of query)
Diffstat (limited to 'mysql-test/main/subselect_mat_cost.result')
-rw-r--r--mysql-test/main/subselect_mat_cost.result2
1 files changed, 0 insertions, 2 deletions
diff --git a/mysql-test/main/subselect_mat_cost.result b/mysql-test/main/subselect_mat_cost.result
index d7ae095e1db..9bed355968a 100644
--- a/mysql-test/main/subselect_mat_cost.result
+++ b/mysql-test/main/subselect_mat_cost.result
@@ -39,8 +39,6 @@ create index Language on CountryLanguage(Language);
create index CityName on City(Name);
alter table City change population population int(11) null default 0;
select max(id) from City into @max_city_id;
-Warnings:
-Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
insert into City values (@max_city_id + 1,'Kilifarevo','BGR',NULL);
SELECT COUNT(*) FROM Country;
COUNT(*)