1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Remove end . from error messages to get them consistent

Fixed a few failing tests
This commit is contained in:
Monty
2016-10-03 18:49:44 +03:00
parent c1125c3218
commit af7490f95d
193 changed files with 2272 additions and 2267 deletions

View File

@ -5,10 +5,10 @@ SELECT @global_start_value;
'#--------------------FN_DYNVARS_177_01------------------------#'
SET @@global.timed_mutexes = 1;
Warnings:
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release.
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release
SET @@global.timed_mutexes = DEFAULT;
Warnings:
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release.
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release
SELECT @@global.timed_mutexes;
@@global.timed_mutexes
0
@ -22,20 +22,20 @@ SELECT global.timed_mutexes;
ERROR 42S02: Unknown table 'global' in field list
SET global timed_mutexes = 1;
Warnings:
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release.
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release
SELECT @@global.timed_mutexes;
@@global.timed_mutexes
1
'#--------------------FN_DYNVARS_177_03------------------------#'
SET @@global.timed_mutexes = 0;
Warnings:
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release.
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release
SELECT @@global.timed_mutexes;
@@global.timed_mutexes
0
SET @@global.timed_mutexes = 1;
Warnings:
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release.
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release
SELECT @@global.timed_mutexes;
@@global.timed_mutexes
1
@ -93,32 +93,32 @@ ON
'#---------------------FN_DYNVARS_177_08-------------------------#'
SET @@global.timed_mutexes = OFF;
Warnings:
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release.
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release
SELECT @@global.timed_mutexes;
@@global.timed_mutexes
0
SET @@global.timed_mutexes = ON;
Warnings:
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release.
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release
SELECT @@global.timed_mutexes;
@@global.timed_mutexes
1
'#---------------------FN_DYNVARS_177_09----------------------#'
SET @@global.timed_mutexes = TRUE;
Warnings:
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release.
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release
SELECT @@global.timed_mutexes;
@@global.timed_mutexes
1
SET @@global.timed_mutexes = FALSE;
Warnings:
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release.
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release
SELECT @@global.timed_mutexes;
@@global.timed_mutexes
0
SET @@global.timed_mutexes = @global_start_value;
Warnings:
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release.
Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release
SELECT @@global.timed_mutexes;
@@global.timed_mutexes
0