Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
cd39f4ab
Commit
cd39f4ab
authored
Jun 28, 2023
by
Sergei Petrunia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-31573: rocksdb.group_min_max test fails
Set the histogram_type to be DOUBLE_PREC_HB as it originally was.
parent
73f78fb3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
storage/rocksdb/mysql-test/rocksdb/include/group_min_max.inc
storage/rocksdb/mysql-test/rocksdb/include/group_min_max.inc
+6
-0
storage/rocksdb/mysql-test/rocksdb/r/group_min_max.result
storage/rocksdb/mysql-test/rocksdb/r/group_min_max.result
+4
-0
No files found.
storage/rocksdb/mysql-test/rocksdb/include/group_min_max.inc
View file @
cd39f4ab
...
...
@@ -12,6 +12,10 @@
--
source
include
/
default_optimizer_switch
.
inc
set
@
rgmm_hist_type
=@@
histogram_type
,
histogram_type
=
double_prec_hb
;
--
disable_warnings
drop
table
if
exists
t1
;
--
enable_warnings
...
...
@@ -1436,3 +1440,5 @@ SHOW SESSION STATUS LIKE 'Handler_read%';
DROP
TABLE
t1
;
--
echo
# End of test for Bug#18109609
set
histogram_type
=@
rgmm_hist_type
;
storage/rocksdb/mysql-test/rocksdb/r/group_min_max.result
View file @
cd39f4ab
set @debug_tmp= @@debug_dbug;
set global debug_dbug="+d,force_group_by";
set
@rgmm_hist_type=@@histogram_type,
histogram_type=double_prec_hb;
drop table if exists t1;
create table t1 (
a1 char(64), a2 char(64), b char(16), c char(16) not null, d char(16), dummy char(248) default ' '
...
...
@@ -3523,4 +3526,5 @@ Handler_read_rnd_deleted 0
Handler_read_rnd_next 0
DROP TABLE t1;
# End of test for Bug#18109609
set histogram_type=@rgmm_hist_type;
set global debug_dbug=@debug_tmp;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment