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
02a67307
Commit
02a67307
authored
Aug 31, 2021
by
Sergei Petrunia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiation on windows
parent
3486bf41
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/sql_statistics.h
sql/sql_statistics.h
+2
-2
No files found.
sql/sql_statistics.h
View file @
02a67307
...
...
@@ -357,7 +357,7 @@ class Histogram_binary : public Histogram_base
class
Histogram_json
:
public
Histogram_base
{
private:
uint8
size
;
/* Number of elements in the histogram */
size_t
size
;
/* Number of elements in the histogram */
/* Collection-time only: collected histogram in the JSON form. */
std
::
string
json_text
;
...
...
@@ -376,7 +376,7 @@ class Histogram_json : public Histogram_base
// returns number of buckets in the histogram
uint
get_width
()
override
{
return
size
;
return
(
uint
)
size
;
}
Histogram_type
get_type
()
override
...
...
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