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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
0077ba49
Commit
0077ba49
authored
Dec 16, 2008
by
Mattias Jonsson
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
5cf57aab
3ce026ec
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
17 additions
and
18 deletions
+17
-18
sql/field.h
sql/field.h
+1
-1
sql/item.cc
sql/item.cc
+3
-3
sql/item_sum.cc
sql/item_sum.cc
+3
-4
sql/log_event.cc
sql/log_event.cc
+1
-1
sql/spatial.h
sql/spatial.h
+5
-5
sql/sql_lex.cc
sql/sql_lex.cc
+1
-1
sql/table.h
sql/table.h
+1
-1
storage/federated/ha_federated.cc
storage/federated/ha_federated.cc
+1
-1
storage/heap/ha_heap.cc
storage/heap/ha_heap.cc
+1
-1
No files found.
sql/field.h
View file @
0077ba49
...
...
@@ -209,7 +209,7 @@ public:
memcpy
(
ptr
,
ptr
+
l_offset
,
pack_length
());
if
(
null_ptr
)
*
null_ptr
=
((
*
null_ptr
&
(
uchar
)
~
null_bit
)
|
null_ptr
[
l_offset
]
&
null_bit
);
(
null_ptr
[
l_offset
]
&
null_bit
)
);
}
virtual
bool
binary
()
const
{
return
1
;
}
virtual
bool
zero_pack
()
const
{
return
1
;
}
...
...
sql/item.cc
View file @
0077ba49
...
...
@@ -2628,7 +2628,7 @@ void Item_param::set_time(MYSQL_TIME *tm, timestamp_type time_type,
if
(
value
.
time
.
year
>
9999
||
value
.
time
.
month
>
12
||
value
.
time
.
day
>
31
||
time_type
!=
MYSQL_TIMESTAMP_TIME
&&
value
.
time
.
hour
>
23
||
(
time_type
!=
MYSQL_TIMESTAMP_TIME
&&
value
.
time
.
hour
>
23
)
||
value
.
time
.
minute
>
59
||
value
.
time
.
second
>
59
)
{
char
buff
[
MAX_DATE_STRING_REP_LENGTH
];
...
...
@@ -4840,8 +4840,8 @@ int Item::save_in_field(Field *field, bool no_conversions)
{
int
error
;
if
(
result_type
()
==
STRING_RESULT
||
result_type
()
==
REAL_RESULT
&&
field
->
result_type
()
==
STRING_RESULT
)
(
result_type
()
==
REAL_RESULT
&&
field
->
result_type
()
==
STRING_RESULT
)
)
{
String
*
result
;
CHARSET_INFO
*
cs
=
collation
.
collation
;
...
...
sql/item_sum.cc
View file @
0077ba49
...
...
@@ -654,8 +654,7 @@ Item_sum_hybrid::fix_fields(THD *thd, Item **ref)
return
TRUE
;
// 'item' can be changed during fix_fields
if
(
!
item
->
fixed
&&
item
->
fix_fields
(
thd
,
args
)
||
if
((
!
item
->
fixed
&&
item
->
fix_fields
(
thd
,
args
))
||
(
item
=
args
[
0
])
->
check_cols
(
1
))
return
TRUE
;
decimals
=
item
->
decimals
;
...
...
@@ -981,8 +980,8 @@ void Item_sum_distinct::fix_length_and_dec()
integers each <= 2^32.
*/
if
(
table_field_type
==
MYSQL_TYPE_INT24
||
table_field_type
>=
MYSQL_TYPE_TINY
&&
table_field_type
<=
MYSQL_TYPE_LONG
)
(
table_field_type
>=
MYSQL_TYPE_TINY
&&
table_field_type
<=
MYSQL_TYPE_LONG
)
)
{
val
.
traits
=
Hybrid_type_traits_fast_decimal
::
instance
();
break
;
...
...
sql/log_event.cc
View file @
0077ba49
...
...
@@ -2680,7 +2680,7 @@ void Query_log_event::print_query_header(IO_CACHE* file,
if
(
!
(
flags
&
LOG_EVENT_SUPPRESS_USE_F
)
&&
db
)
{
if
(
different_db
=
memcmp
(
print_event_info
->
db
,
db
,
db_len
+
1
))
if
(
(
different_db
=
memcmp
(
print_event_info
->
db
,
db
,
db_len
+
1
)
))
memcpy
(
print_event_info
->
db
,
db
,
db_len
+
1
);
if
(
db
[
0
]
&&
different_db
)
my_b_printf
(
file
,
"use %s%s
\n
"
,
db
,
print_event_info
->
delimiter
);
...
...
sql/spatial.h
View file @
0077ba49
...
...
@@ -116,12 +116,12 @@ struct MBR
int
touches
(
const
MBR
*
mbr
)
{
/* The following should be safe, even if we compare doubles */
return
((((
mbr
->
xmin
==
xmax
)
||
(
mbr
->
xmax
==
xmin
))
&&
((
mbr
->
ymin
>=
ymin
)
&&
(
mbr
->
ymin
<=
ymax
)
||
(
mbr
->
ymax
>=
ymin
)
&&
(
mbr
->
ymax
<=
ymax
)))
||
return
((((
mbr
->
xmin
==
xmax
)
||
(
mbr
->
xmax
==
xmin
))
&&
((
(
mbr
->
ymin
>=
ymin
)
&&
(
mbr
->
ymin
<=
ymax
))
||
(
(
mbr
->
ymax
>=
ymin
)
&&
(
mbr
->
ymax
<=
ymax
)
)))
||
(((
mbr
->
ymin
==
ymax
)
||
(
mbr
->
ymax
==
ymin
))
&&
((
mbr
->
xmin
>=
xmin
)
&&
(
mbr
->
xmin
<=
xmax
)
||
(
mbr
->
xmax
>=
xmin
)
&&
(
mbr
->
xmax
<=
xmax
))));
((
(
mbr
->
xmin
>=
xmin
)
&&
(
mbr
->
xmin
<=
xmax
)
)
||
(
(
mbr
->
xmax
>=
xmin
)
&&
(
mbr
->
xmax
<=
xmax
)
))));
}
int
within
(
const
MBR
*
mbr
)
...
...
sql/sql_lex.cc
View file @
0077ba49
...
...
@@ -2002,7 +2002,7 @@ void st_select_lex::print_limit(THD *thd,
item
->
substype
()
==
Item_subselect
::
ALL_SUBS
))
{
DBUG_ASSERT
(
!
item
->
fixed
||
select_limit
->
val_int
()
==
LL
(
1
)
&&
offset_limit
==
0
);
(
select_limit
->
val_int
()
==
LL
(
1
)
&&
offset_limit
==
0
)
);
return
;
}
...
...
sql/table.h
View file @
0077ba49
...
...
@@ -1363,7 +1363,7 @@ struct TABLE_LIST
void
cleanup_items
();
bool
placeholder
()
{
return
derived
||
view
||
schema_table
||
create
&&
!
table
->
db_stat
||
return
derived
||
view
||
schema_table
||
(
create
&&
!
table
->
db_stat
)
||
!
table
;
}
void
print
(
THD
*
thd
,
String
*
str
,
enum_query_type
query_type
);
...
...
storage/federated/ha_federated.cc
View file @
0077ba49
...
...
@@ -2828,7 +2828,7 @@ int ha_federated::info(uint flag)
if
(
!
(
row
=
mysql_fetch_row
(
result
)))
goto
error
;
if
(
flag
&
HA_STATUS_VARIABLE
|
HA_STATUS_CONST
)
if
(
flag
&
(
HA_STATUS_VARIABLE
|
HA_STATUS_CONST
)
)
{
/*
deleted is set in ha_federated::info
...
...
storage/heap/ha_heap.cc
View file @
0077ba49
...
...
@@ -91,7 +91,7 @@ const char **ha_heap::bas_ext() const
int
ha_heap
::
open
(
const
char
*
name
,
int
mode
,
uint
test_if_locked
)
{
if
((
test_if_locked
&
HA_OPEN_INTERNAL_TABLE
)
||
!
(
file
=
heap_open
(
name
,
mode
))
&&
my_errno
==
ENOENT
)
(
!
(
file
=
heap_open
(
name
,
mode
))
&&
my_errno
==
ENOENT
)
)
{
HA_CREATE_INFO
create_info
;
internal_table
=
test
(
test_if_locked
&
HA_OPEN_INTERNAL_TABLE
);
...
...
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