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
08a901cc
Commit
08a901cc
authored
Mar 30, 2018
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup: remove XString::operator== and !=
use named methods instead.
parent
0dcb47ca
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
19 deletions
+23
-19
sql/handler.cc
sql/handler.cc
+8
-9
sql/lex_string.h
sql/lex_string.h
+9
-0
sql/sql_view.cc
sql/sql_view.cc
+4
-4
sql/unireg.cc
sql/unireg.cc
+1
-1
sql/vers_string.h
sql/vers_string.h
+1
-5
No files found.
sql/handler.cc
View file @
08a901cc
...
...
@@ -6825,12 +6825,12 @@ int del_global_index_stat(THD *thd, TABLE* table, KEY* key_info)
bool
Vers_parse_info
::
is_start
(
const
char
*
name
)
const
{
DBUG_ASSERT
(
name
);
return
as_row
.
start
&&
as_row
.
start
==
LString_i
(
name
);
return
as_row
.
start
&&
as_row
.
start
.
streq
(
name
);
}
bool
Vers_parse_info
::
is_end
(
const
char
*
name
)
const
{
DBUG_ASSERT
(
name
);
return
as_row
.
end
&&
as_row
.
end
==
LString_i
(
name
);
return
as_row
.
end
&&
as_row
.
end
.
streq
(
name
);
}
bool
Vers_parse_info
::
is_start
(
const
Create_field
&
f
)
const
{
...
...
@@ -7014,8 +7014,7 @@ bool Table_scope_and_contents_source_st::vers_fix_system_fields(
continue
;
DBUG_ASSERT
(
versioned_write
);
if
(
vers_info
.
is_start
(
*
f
)
&&
vers_info
.
default_start
==
f
->
field_name
)
if
(
vers_info
.
is_start
(
*
f
)
&&
vers_info
.
default_start
.
streq
(
f
->
field_name
))
{
if
(
vers_info
.
as_row
.
start
)
it
.
remove
();
...
...
@@ -7026,8 +7025,7 @@ bool Table_scope_and_contents_source_st::vers_fix_system_fields(
}
continue
;
}
if
(
vers_info
.
is_end
(
*
f
)
&&
vers_info
.
default_end
==
f
->
field_name
)
if
(
vers_info
.
is_end
(
*
f
)
&&
vers_info
.
default_end
.
streq
(
f
->
field_name
))
{
if
(
vers_info
.
as_row
.
end
)
it
.
remove
();
...
...
@@ -7059,7 +7057,7 @@ bool Table_scope_and_contents_source_st::vers_fix_system_fields(
Field
*
fld
=
static_cast
<
Item_field
*>
(
item
)
->
field
;
DBUG_ASSERT
(
fld
);
if
((
fld
->
flags
&
sys_flag
)
&&
LString_i
(
f
->
field_name
)
==
fld
->
field_name
)
lex_string_syseq
(
&
f
->
field_name
,
&
fld
->
field_name
)
)
{
f
->
field
=
fld
;
*
versioned_write
=
false
;
...
...
@@ -7207,7 +7205,7 @@ bool Vers_parse_info::fix_alter_info(THD *thd, Alter_info *alter_info,
if
(
f
->
versioning
==
Column_definition
::
WITHOUT_VERSIONING
)
f
->
flags
|=
VERS_UPDATE_UNVERSIONED_FLAG
;
if
(
f
->
change
.
str
&&
(
start
==
f
->
change
||
end
==
f
->
change
))
if
(
f
->
change
.
str
&&
(
start
.
streq
(
f
->
change
)
||
end
.
streq
(
f
->
change
)
))
{
my_error
(
ER_VERS_ALTER_SYSTEM_FIELD
,
MYF
(
0
),
f
->
change
.
str
);
return
true
;
...
...
@@ -7315,7 +7313,8 @@ bool Vers_parse_info::check_with_conditions(const char *table_name) const
return
true
;
}
if
(
as_row
.
start
!=
system_time
.
start
||
as_row
.
end
!=
system_time
.
end
)
if
(
!
as_row
.
start
.
streq
(
system_time
.
start
)
||
!
as_row
.
end
.
streq
(
system_time
.
end
))
{
my_error
(
ER_VERS_PERIOD_COLUMNS
,
MYF
(
0
),
as_row
.
start
.
str
,
as_row
.
end
.
str
);
return
true
;
...
...
sql/lex_string.h
View file @
08a901cc
...
...
@@ -47,4 +47,13 @@ static inline bool lex_string_eq(const LEX_CSTRING *a, const LEX_CSTRING *b)
return
strcasecmp
(
a
->
str
,
b
->
str
)
==
0
;
}
/*
Compare if two LEX_CSTRING are equal in system character set
(field names, user variables, etc - but *not* table names)
*/
static
inline
bool
lex_string_syseq
(
const
LEX_CSTRING
*
a
,
const
LEX_CSTRING
*
b
)
{
return
lex_string_cmp
(
system_charset_info
,
a
,
b
)
==
0
;
}
#endif
/* LEX_STRING_INCLUDED */
sql/sql_view.cc
View file @
08a901cc
...
...
@@ -612,8 +612,8 @@ bool mysql_create_view(THD *thd, TABLE_LIST *views,
const
LString_i
field_name
=
fld
->
field
->
field_name
;
if
(
s
->
tmp_table
||
(
s
->
versioned
&&
(
field_name
==
s
->
vers_start_field
()
->
field_name
||
field_name
==
s
->
vers_end_field
()
->
field_name
)))
(
field_name
.
streq
(
s
->
vers_start_field
()
->
field_name
)
||
field_name
.
streq
(
s
->
vers_end_field
()
->
field_name
)
)))
{
continue
;
}
...
...
@@ -2040,8 +2040,8 @@ bool insert_view_fields(THD *thd, List<Item> *list, TABLE_LIST *view)
TABLE_SHARE
*
s
=
fld
->
context
->
table_list
->
table
->
s
;
LString_i
field_name
=
fld
->
field_name
;
if
(
s
->
versioned
&&
(
field_name
==
s
->
vers_start_field
()
->
field_name
||
field_name
==
s
->
vers_end_field
()
->
field_name
))
(
field_name
.
streq
(
s
->
vers_start_field
()
->
field_name
)
||
field_name
.
streq
(
s
->
vers_end_field
()
->
field_name
)
))
continue
;
list
->
push_back
(
fld
,
thd
->
mem_root
);
}
...
...
sql/unireg.cc
View file @
08a901cc
...
...
@@ -124,7 +124,7 @@ vers_get_field(HA_CREATE_INFO *create_info, List<Create_field> &create_fields, b
for
(
unsigned
field_no
=
0
;
(
sql_field
=
it
++
);
++
field_no
)
{
if
(
row_field
==
sql_field
->
field_name
)
if
(
row_field
.
streq
(
sql_field
->
field_name
)
)
{
DBUG_ASSERT
(
field_no
<=
uint16
(
~
0U
));
return
uint16
(
field_no
);
...
...
sql/vers_string.h
View file @
08a901cc
...
...
@@ -103,14 +103,10 @@ struct XString : public Storage
Storage
(
_str
,
strlen
(
_str
),
Compare
::
charset
())
{
}
bool
operator
==
(
const
XString
&
b
)
const
bool
streq
(
const
XString
&
b
)
const
{
return
Storage
::
length
()
==
b
.
length
()
&&
0
==
Compare
()(
this
->
lex_cstring
(),
b
.
lex_cstring
());
}
bool
operator
!=
(
const
XString
&
b
)
const
{
return
!
(
*
this
==
b
);
}
operator
const
char
*
()
const
{
return
Storage
::
ptr
();
...
...
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