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
3f7659b8
Commit
3f7659b8
authored
Aug 08, 2019
by
Alexander Barkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing -Winconsistent-missing-override with CLANG
parent
e81db2ba
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
193 additions
and
159 deletions
+193
-159
sql/sql_type.h
sql/sql_type.h
+181
-147
sql/sql_type_geom.h
sql/sql_type_geom.h
+12
-12
No files found.
sql/sql_type.h
View file @
3f7659b8
This diff is collapsed.
Click to expand it.
sql/sql_type_geom.h
View file @
3f7659b8
...
...
@@ -199,8 +199,8 @@ class Type_handler_linestring: public Type_handler_geometry
{
static
const
Name
m_name_linestring
;
public:
geometry_types
geometry_type
()
const
{
return
GEOM_LINESTRING
;
}
const
Name
name
()
const
{
return
m_name_linestring
;
}
geometry_types
geometry_type
()
const
override
{
return
GEOM_LINESTRING
;
}
const
Name
name
()
const
override
{
return
m_name_linestring
;
}
Item
*
make_constructor_item
(
THD
*
thd
,
List
<
Item
>
*
args
)
const
override
;
};
...
...
@@ -209,8 +209,8 @@ class Type_handler_polygon: public Type_handler_geometry
{
static
const
Name
m_name_polygon
;
public:
geometry_types
geometry_type
()
const
{
return
GEOM_POLYGON
;
}
const
Name
name
()
const
{
return
m_name_polygon
;
}
geometry_types
geometry_type
()
const
override
{
return
GEOM_POLYGON
;
}
const
Name
name
()
const
override
{
return
m_name_polygon
;
}
Item
*
make_constructor_item
(
THD
*
thd
,
List
<
Item
>
*
args
)
const
override
;
};
...
...
@@ -219,8 +219,8 @@ class Type_handler_multipoint: public Type_handler_geometry
{
static
const
Name
m_name_multipoint
;
public:
geometry_types
geometry_type
()
const
{
return
GEOM_MULTIPOINT
;
}
const
Name
name
()
const
{
return
m_name_multipoint
;
}
geometry_types
geometry_type
()
const
override
{
return
GEOM_MULTIPOINT
;
}
const
Name
name
()
const
override
{
return
m_name_multipoint
;
}
Item
*
make_constructor_item
(
THD
*
thd
,
List
<
Item
>
*
args
)
const
override
;
};
...
...
@@ -229,8 +229,8 @@ class Type_handler_multilinestring: public Type_handler_geometry
{
static
const
Name
m_name_multilinestring
;
public:
geometry_types
geometry_type
()
const
{
return
GEOM_MULTILINESTRING
;
}
const
Name
name
()
const
{
return
m_name_multilinestring
;
}
geometry_types
geometry_type
()
const
override
{
return
GEOM_MULTILINESTRING
;
}
const
Name
name
()
const
override
{
return
m_name_multilinestring
;
}
Item
*
make_constructor_item
(
THD
*
thd
,
List
<
Item
>
*
args
)
const
override
;
};
...
...
@@ -239,8 +239,8 @@ class Type_handler_multipolygon: public Type_handler_geometry
{
static
const
Name
m_name_multipolygon
;
public:
geometry_types
geometry_type
()
const
{
return
GEOM_MULTIPOLYGON
;
}
const
Name
name
()
const
{
return
m_name_multipolygon
;
}
geometry_types
geometry_type
()
const
override
{
return
GEOM_MULTIPOLYGON
;
}
const
Name
name
()
const
override
{
return
m_name_multipolygon
;
}
Item
*
make_constructor_item
(
THD
*
thd
,
List
<
Item
>
*
args
)
const
override
;
};
...
...
@@ -249,8 +249,8 @@ class Type_handler_geometrycollection: public Type_handler_geometry
{
static
const
Name
m_name_geometrycollection
;
public:
geometry_types
geometry_type
()
const
{
return
GEOM_GEOMETRYCOLLECTION
;
}
const
Name
name
()
const
{
return
m_name_geometrycollection
;
}
geometry_types
geometry_type
()
const
override
{
return
GEOM_GEOMETRYCOLLECTION
;
}
const
Name
name
()
const
override
{
return
m_name_geometrycollection
;
}
Item
*
make_constructor_item
(
THD
*
thd
,
List
<
Item
>
*
args
)
const
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