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
4ad2fd7c
Commit
4ad2fd7c
authored
Mar 01, 2013
by
Sergey Petrunya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compile error on windows in fix for mdev-4177.
parent
8fb2919e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
sql/item_cmpfunc.h
sql/item_cmpfunc.h
+7
-5
No files found.
sql/item_cmpfunc.h
View file @
4ad2fd7c
...
...
@@ -1811,7 +1811,7 @@ class COND_EQUAL: public Sql_alloc
from the list when performing an iteration.
*/
template
<
template
<
class
>
class
LI
,
class
T
>
class
Item_equal_iterator
template
<
template
<
class
>
class
LI
,
typename
T
>
class
Item_equal_iterator
:
public
LI
<
T
>
{
protected:
...
...
@@ -1849,13 +1849,14 @@ template <template<class> class LI, class T> class Item_equal_iterator
}
};
typedef
Item_equal_iterator
<
List_iterator_fast
,
Item
>
Item_equal_iterator_fast
;
class
Item_equal_fields_iterator
:
public
Item_equal_iterator
<
List_iterator_fast
,
Item
>
:
public
Item_equal_iterator
_fast
{
public:
Item_equal_fields_iterator
(
Item_equal
&
item_eq
)
:
Item_equal_iterator
<
List_iterator_fast
,
Item
>
(
item_eq
)
:
Item_equal_iterator
_fast
(
item_eq
)
{
}
Item
**
ref
()
{
...
...
@@ -1863,13 +1864,14 @@ class Item_equal_fields_iterator
}
};
typedef
Item_equal_iterator
<
List_iterator
,
Item
>
Item_equal_iterator_iterator_slow
;
class
Item_equal_fields_iterator_slow
:
public
Item_equal_iterator
<
List_iterator
,
Item
>
:
public
Item_equal_iterator
_iterator_slow
{
public:
Item_equal_fields_iterator_slow
(
Item_equal
&
item_eq
)
:
Item_equal_iterator
<
List_iterator
,
Item
>
(
item_eq
)
:
Item_equal_iterator
_iterator_slow
(
item_eq
)
{
}
void
remove
()
{
...
...
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