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
50c8e65b
Commit
50c8e65b
authored
Feb 27, 2023
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug in optimizer_costs.test
The test failed if one had disabled some engines during compilation
parent
b24b3cea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
mysql-test/main/optimizer_costs.result
mysql-test/main/optimizer_costs.result
+1
-1
mysql-test/main/optimizer_costs.test
mysql-test/main/optimizer_costs.test
+3
-1
No files found.
mysql-test/main/optimizer_costs.result
View file @
50c8e65b
...
...
@@ -344,4 +344,4 @@ drop table t1;
#
# cleanup
#
Start_engines: 9 End_engines: 10
"New cost structures: 1 (should be 1)"
mysql-test/main/optimizer_costs.test
View file @
50c8e65b
...
...
@@ -184,4 +184,6 @@ drop table t1;
--
echo
#
let
$end_engines
=
`select count(*) from information_schema.optimizer_costs`
;
--
echo
Start_engines
:
$start_engines
End_engines
:
$end_engines
let
$diff
=
`select $end_engines - $start_engines`
;
--
echo
"New cost structures:
$diff
(should be 1)"
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