summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysql57_virtual.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/mysql57_virtual.result')
-rw-r--r--mysql-test/r/mysql57_virtual.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/mysql57_virtual.result b/mysql-test/r/mysql57_virtual.result
index ace8fe38d36..6f337c8e7d7 100644
--- a/mysql-test/r/mysql57_virtual.result
+++ b/mysql-test/r/mysql57_virtual.result
@@ -32,7 +32,7 @@ show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` int(11) DEFAULT NULL,
- `b` int(11) AS (a+1) PERSISTENT,
- `c` int(11) AS (a+2) VIRTUAL
+ `b` int(11) AS ((`a` + 1)) PERSISTENT,
+ `c` int(11) AS ((`a` + 2)) VIRTUAL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;