summaryrefslogtreecommitdiff
path: root/mysql-test/suite/parts/r/partition_float_innodb.result
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2022-09-21 10:07:09 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2022-09-21 10:07:09 +0300
commita8e45404765db6bc6c57dab3cc834e92a44d0110 (patch)
tree901416c2f3931ea4b9df5a1d95e6c358a7954a25 /mysql-test/suite/parts/r/partition_float_innodb.result
parent4a7367d5282978207ad91e0b595b75a35dc37fec (diff)
parent4345d9310080e6e4cbf1040263a2653f7d3d9227 (diff)
downloadmariadb-git-a8e45404765db6bc6c57dab3cc834e92a44d0110.tar.gz
Merge 10.8 into 10.9
Diffstat (limited to 'mysql-test/suite/parts/r/partition_float_innodb.result')
-rw-r--r--mysql-test/suite/parts/r/partition_float_innodb.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/parts/r/partition_float_innodb.result b/mysql-test/suite/parts/r/partition_float_innodb.result
index 1163c8dafda..7cdccdb886f 100644
--- a/mysql-test/suite/parts/r/partition_float_innodb.result
+++ b/mysql-test/suite/parts/r/partition_float_innodb.result
@@ -9,7 +9,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
`a` float NOT NULL,
PRIMARY KEY (`a`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
PARTITION BY KEY (`a`)
(PARTITION `pa1` MAX_ROWS = 20 MIN_ROWS = 2 ENGINE = InnoDB,
PARTITION `pa2` MAX_ROWS = 30 MIN_ROWS = 3 ENGINE = InnoDB,
@@ -45,7 +45,7 @@ Table Create Table
t2 CREATE TABLE `t2` (
`a` float NOT NULL,
PRIMARY KEY (`a`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
PARTITION BY KEY (`a`)
PARTITIONS 10
insert into t2 values (-3.402823466E+38), (-3.402823466E+37), (-123.456), (0), (1234546.789), (123.456), (1.5);