You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test.t4 backup Warning The syntax 'BACKUP TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
7
+
test.t4 backup Warning 'BACKUP TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
8
8
test.t4 backup Error Can't create/write to file 'MYSQLTEST_VARDIR/bogus/t4.frm' (Errcode: X)
9
9
test.t4 backup status Operation failed
10
10
backup table t4 to '../../tmp';
11
11
Table Op Msg_type Msg_text
12
-
test.t4 backup Warning The syntax 'BACKUP TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
12
+
test.t4 backup Warning 'BACKUP TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
test.t4 backup Warning The syntax 'BACKUP TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
17
+
test.t4 backup Warning 'BACKUP TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
18
18
test.t4 backup Error Can't create/write to file 'MYSQLTEST_VARDIR/tmp/t4.frm' (Errcode: X)
19
19
test.t4 backup status Operation failed
20
20
drop table t4;
21
21
restore table t4 from '../../tmp';
22
22
Table Op Msg_type Msg_text
23
-
test.t4 restore Warning The syntax 'RESTORE TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
23
+
test.t4 restore Warning 'RESTORE TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
24
24
test.t4 restore status OK
25
25
select count(*) from t4;
26
26
count(*)
@@ -29,18 +29,18 @@ create table t1(n int);
29
29
insert into t1 values (23),(45),(67);
30
30
backup table t1 to '../../tmp';
31
31
Table Op Msg_type Msg_text
32
-
test.t1 backup Warning The syntax 'BACKUP TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
32
+
test.t1 backup Warning 'BACKUP TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
33
33
test.t1 backup status OK
34
34
drop table t1;
35
35
restore table t1 from '../../bogus';
36
36
Table Op Msg_type Msg_text
37
37
t1 restore error Failed copying .frm file
38
38
Warnings:
39
-
Warning 1287 The syntax 'RESTORE TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
39
+
Warning 1287 'RESTORE TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
40
40
Error 29 File 'MYSQLTEST_VARDIR/bogus/t1.frm' not found (Errcode: X)
41
41
restore table t1 from '../../tmp';
42
42
Table Op Msg_type Msg_text
43
-
test.t1 restore Warning The syntax 'RESTORE TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
43
+
test.t1 restore Warning 'RESTORE TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
44
44
test.t1 restore status OK
45
45
select n from t1;
46
46
n
@@ -53,13 +53,13 @@ insert into t2 values (123),(145),(167);
53
53
insert into t3 values (223),(245),(267);
54
54
backup table t2,t3 to '../../tmp';
55
55
Table Op Msg_type Msg_text
56
-
test.t2 backup Warning The syntax 'BACKUP TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
56
+
test.t2 backup Warning 'BACKUP TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
57
57
test.t2 backup status OK
58
58
test.t3 backup status OK
59
59
drop table t1,t2,t3;
60
60
restore table t1,t2,t3 from '../../tmp';
61
61
Table Op Msg_type Msg_text
62
-
test.t1 restore Warning The syntax 'RESTORE TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
62
+
test.t1 restore Warning 'RESTORE TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
63
63
test.t1 restore status OK
64
64
test.t2 restore status OK
65
65
test.t3 restore status OK
@@ -81,27 +81,27 @@ k
81
81
drop table t1,t2,t3,t4;
82
82
restore table t1 from '../../tmp';
83
83
Table Op Msg_type Msg_text
84
-
test.t1 restore Warning The syntax 'RESTORE TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
84
+
test.t1 restore Warning 'RESTORE TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
85
85
test.t1 restore status OK
86
86
rename table t1 to t5;
87
87
lock tables t5 write;
88
88
backup table t5 to '../../tmp';
89
89
unlock tables;
90
90
Table Op Msg_type Msg_text
91
-
test.t5 backup Warning The syntax 'BACKUP TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
91
+
test.t5 backup Warning 'BACKUP TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
92
92
test.t5 backup status OK
93
93
drop table t5;
94
94
DROP TABLE IF EXISTS `t+1`;
95
95
CREATE TABLE `t+1` (c1 INT);
96
96
INSERT INTO `t+1` VALUES (1), (2), (3);
97
97
BACKUP TABLE `t+1` TO '../../tmp';
98
98
Table Op Msg_type Msg_text
99
-
test.t+1 backup Warning The syntax 'BACKUP TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
99
+
test.t+1 backup Warning 'BACKUP TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
100
100
test.t+1 backup status OK
101
101
DROP TABLE `t+1`;
102
102
RESTORE TABLE `t+1` FROM '../../tmp';
103
103
Table Op Msg_type Msg_text
104
-
test.t+1 restore Warning The syntax 'RESTORE TABLE' is deprecated and will be removed in MySQL 6.0. Please use MySQL Administrator (mysqldump, mysql) instead
104
+
test.t+1 restore Warning 'RESTORE TABLE' is deprecated and will be removed in a future release. Please use MySQL Administrator (mysqldump, mysql) instead
id select_type table type possible_keys key key_len ref rows filtered Extra
1089
1089
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
1090
1090
Warnings:
1091
-
Warning 1287 The syntax 'FRAC_SECOND' is deprecated and will be removed in MySQL 5.6. Please use MICROSECOND instead
1091
+
Warning 1287 'FRAC_SECOND' is deprecated and will be removed in a future release. Please use MICROSECOND instead
1092
1092
Note 1003 select timestampdiff(WEEK,'2001-02-01','2001-05-01') AS `a1`,timestampdiff(SECOND_FRAC,'2001-02-01 12:59:59.120000','2001-05-01 12:58:58.119999') AS `a2`
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FRAC_SECOND)' at line 1
0 commit comments