summaryrefslogtreecommitdiff
path: root/mysql-test/r/create.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2016-06-09 00:00:44 +0200
committerSergei Golubchik <serg@mariadb.org>2016-06-09 00:00:44 +0200
commit2dee76f4359d7e87cd7f4094892a2ed287dce1a8 (patch)
tree008b2501e6ca83b5db232c8833fef0f3344caf2e /mysql-test/r/create.result
parentdc08c3b15a122e9dd120789b07efe550e0ef84b8 (diff)
downloadmariadb-git-2dee76f4359d7e87cd7f4094892a2ed287dce1a8.tar.gz
MDEV-9518 Increase the range for INFORMATION_SCHEMA.MEMORY_USED column
make INFORMATION_SCHEMA.PROCESSLIST.MEMORY_USED bigint
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r--mysql-test/r/create.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result
index 7b54f0633b5..154a8544ca9 100644
--- a/mysql-test/r/create.result
+++ b/mysql-test/r/create.result
@@ -1145,7 +1145,7 @@ t1 CREATE TABLE `t1` (
`STAGE` tinyint(2) NOT NULL DEFAULT '0',
`MAX_STAGE` tinyint(2) NOT NULL DEFAULT '0',
`PROGRESS` decimal(7,3) NOT NULL DEFAULT '0.000',
- `MEMORY_USED` int(7) NOT NULL DEFAULT '0',
+ `MEMORY_USED` bigint(7) NOT NULL DEFAULT '0',
`EXAMINED_ROWS` int(7) NOT NULL DEFAULT '0',
`QUERY_ID` bigint(4) NOT NULL DEFAULT '0',
`INFO_BINARY` blob,
@@ -1168,7 +1168,7 @@ t1 CREATE TEMPORARY TABLE `t1` (
`STAGE` tinyint(2) NOT NULL DEFAULT '0',
`MAX_STAGE` tinyint(2) NOT NULL DEFAULT '0',
`PROGRESS` decimal(7,3) NOT NULL DEFAULT '0.000',
- `MEMORY_USED` int(7) NOT NULL DEFAULT '0',
+ `MEMORY_USED` bigint(7) NOT NULL DEFAULT '0',
`EXAMINED_ROWS` int(7) NOT NULL DEFAULT '0',
`QUERY_ID` bigint(4) NOT NULL DEFAULT '0',
`INFO_BINARY` blob,