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
3bef8482
Commit
3bef8482
authored
Nov 27, 2019
by
Nikita Malyavin
Committed by
Sergei Golubchik
Mar 31, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup: reduce code duplication in read_extra2()
parent
8ab69384
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
24 deletions
+20
-24
sql/table.cc
sql/table.cc
+20
-24
No files found.
sql/table.cc
View file @
3bef8482
...
...
@@ -1516,6 +1516,14 @@ static size_t extra2_read_len(const uchar **extra2, const uchar *extra2_end)
return
length
;
}
static
bool
read_extra2_section_once
(
const
uchar
*
extra2
,
size_t
len
,
LEX_CUSTRING
*
section
)
{
if
(
section
->
str
)
return
true
;
*
section
=
{
extra2
,
len
};
return
false
;
}
static
bool
read_extra2
(
const
uchar
*
frm_image
,
size_t
len
,
extra2_fields
*
fields
)
...
...
@@ -1535,6 +1543,8 @@ bool read_extra2(const uchar *frm_image, size_t len, extra2_fields *fields)
size_t
length
=
extra2_read_len
(
&
extra2
,
e2end
);
if
(
!
length
)
DBUG_RETURN
(
true
);
bool
fail
=
false
;
switch
(
type
)
{
case
EXTRA2_TABLEDEF_VERSION
:
if
(
fields
->
version
.
str
)
// see init_from_sql_statement_string()
...
...
@@ -1549,49 +1559,35 @@ bool read_extra2(const uchar *frm_image, size_t len, extra2_fields *fields)
}
break
;
case
EXTRA2_ENGINE_TABLEOPTS
:
if
(
fields
->
options
.
str
)
DBUG_RETURN
(
true
);
fields
->
options
.
str
=
extra2
;
fields
->
options
.
length
=
length
;
fail
=
read_extra2_section_once
(
extra2
,
length
,
&
fields
->
options
);
break
;
case
EXTRA2_DEFAULT_PART_ENGINE
:
fields
->
engine
.
set
((
const
char
*
)
extra2
,
length
);
break
;
case
EXTRA2_GIS
:
if
(
fields
->
gis
.
str
)
DBUG_RETURN
(
true
);
fields
->
gis
.
str
=
extra2
;
fields
->
gis
.
length
=
length
;
fail
=
read_extra2_section_once
(
extra2
,
length
,
&
fields
->
gis
);
break
;
case
EXTRA2_PERIOD_FOR_SYSTEM_TIME
:
if
(
fields
->
system_period
.
str
||
length
!=
2
*
frm_fieldno_size
)
DBUG_RETURN
(
true
);
fields
->
system_period
.
str
=
extra2
;
fields
->
system_period
.
length
=
length
;
fail
=
read_extra2_section_once
(
extra2
,
length
,
&
fields
->
system_period
)
||
length
!=
2
*
frm_fieldno_size
;
break
;
case
EXTRA2_FIELD_FLAGS
:
if
(
fields
->
field_flags
.
str
)
DBUG_RETURN
(
true
);
fields
->
field_flags
.
str
=
extra2
;
fields
->
field_flags
.
length
=
length
;
fail
=
read_extra2_section_once
(
extra2
,
length
,
&
fields
->
field_flags
);
break
;
case
EXTRA2_APPLICATION_TIME_PERIOD
:
if
(
fields
->
application_period
.
str
)
DBUG_RETURN
(
true
);
fields
->
application_period
.
str
=
extra2
;
fields
->
application_period
.
length
=
length
;
fail
=
read_extra2_section_once
(
extra2
,
length
,
&
fields
->
application_period
);
break
;
case
EXTRA2_FIELD_DATA_TYPE_INFO
:
if
(
fields
->
field_data_type_info
.
str
)
DBUG_RETURN
(
true
);
fields
->
field_data_type_info
.
str
=
extra2
;
fields
->
field_data_type_info
.
length
=
length
;
fail
=
read_extra2_section_once
(
extra2
,
length
,
&
fields
->
field_data_type_info
);
break
;
default:
/* abort frm parsing if it's an unknown but important extra2 value */
if
(
type
>=
EXTRA2_ENGINE_IMPORTANT
)
DBUG_RETURN
(
true
);
}
if
(
fail
)
DBUG_RETURN
(
true
);
extra2
+=
length
;
}
if
(
extra2
!=
e2end
)
...
...
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