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
22ede741
Commit
22ede741
authored
Jun 01, 2016
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix compile error - inconsistent use of 'struct' and 'class' for TDC_element
parent
23fed784
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
6 deletions
+12
-6
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+10
-4
sql/table.h
sql/table.h
+2
-2
No files found.
mysql-test/mysql-test-run.pl
View file @
22ede741
...
...
@@ -1854,11 +1854,17 @@ sub collect_mysqld_features {
$list
=~
s/\n {22}(\S)/ $1/g
;
my
@list
=
split
'
\
n
',
$list
;
$mysql_version_id
=
0
;
while
(
defined
(
my
$line
=
shift
@list
)){
if
(
$line
=~
/^\Q$exe_mysqld\E\s+Ver\s(\d+)\.(\d+)\.(\d+)(\S*)/
)
{
$mysql_version_id
=
$1
*
10000
+
$2
*
100
+
$3
;
mtr_report
("
MariaDB Version $1.$2.$3$4
");
last
;
}
}
mtr_error
("
Could not find version of MariaDB
")
unless
shift
(
@list
)
=~
/^\Q$exe_mysqld\E\s+Ver\s(\d+)\.(\d+)\.(\d+)(\S*)/
;
$mysql_version_id
=
$1
*
10000
+
$2
*
100
+
$3
;
$mysql_version_extra
=
$4
;
mtr_report
("
MariaDB Version $1.$2.$3$4
");
unless
$mysql_version_id
>
0
;
for
(
@list
)
{
...
...
sql/table.h
View file @
22ede741
...
...
@@ -49,7 +49,7 @@ class ACL_internal_table_access;
class
Field
;
class
Table_statistics
;
class
With_element
;
class
TDC_element
;
struct
TDC_element
;
/*
Used to identify NESTED_JOIN structures within a join (applicable only to
...
...
@@ -1013,7 +1013,7 @@ struct TABLE
One should use methods of I_P_List template instead.
*/
TABLE
*
share_all_next
,
**
share_all_prev
;
friend
class
TDC_element
;
friend
struct
TDC_element
;
public:
...
...
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