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
9c45c28d
Commit
9c45c28d
authored
May 20, 2005
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/my/mysql-5.0
parents
77735f2f
0b75f6e3
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
33 additions
and
23 deletions
+33
-23
myisam/rt_split.c
myisam/rt_split.c
+9
-11
ndb/src/ndbapi/Ndb.cpp
ndb/src/ndbapi/Ndb.cpp
+2
-1
sql/field_conv.cc
sql/field_conv.cc
+5
-1
sql/item_sum.cc
sql/item_sum.cc
+2
-7
sql/sql_delete.cc
sql/sql_delete.cc
+1
-1
sql/sql_parse.cc
sql/sql_parse.cc
+2
-0
sql/sql_select.cc
sql/sql_select.cc
+2
-2
strings/my_vsnprintf.c
strings/my_vsnprintf.c
+10
-0
No files found.
myisam/rt_split.c
View file @
9c45c28d
...
...
@@ -257,17 +257,16 @@ int rtree_split_page(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page, uchar *key,
int
n_dim
;
uchar
*
source_cur
,
*
cur1
,
*
cur2
;
uchar
*
new_page
;
int
err_code
=
0
;
uint
nod_flag
=
mi_test_if_nod
(
page
);
uint
full_length
=
key_length
+
(
nod_flag
?
nod_flag
:
int
err_code
=
0
;
uint
nod_flag
=
mi_test_if_nod
(
page
);
uint
full_length
=
key_length
+
(
nod_flag
?
nod_flag
:
info
->
s
->
base
.
rec_reflength
);
int
max_keys
=
(
mi_getint
(
page
)
-
2
)
/
(
full_length
);
int
max_keys
=
(
mi_getint
(
page
)
-
2
)
/
(
full_length
);
n_dim
=
keyinfo
->
keysegs
/
2
;
if
(
!
(
coord_buf
=
my_alloca
(
n_dim
*
2
*
sizeof
(
double
)
*
(
max_keys
+
1
+
4
)
+
if
(
!
(
coord_buf
=
(
double
*
)
my_alloca
(
n_dim
*
2
*
sizeof
(
double
)
*
(
max_keys
+
1
+
4
)
+
sizeof
(
SplitStruct
)
*
(
max_keys
+
1
))))
return
-
1
;
...
...
@@ -311,8 +310,7 @@ int rtree_split_page(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page, uchar *key,
cur1
=
rt_PAGE_FIRST_KEY
(
page
,
nod_flag
);
cur2
=
rt_PAGE_FIRST_KEY
(
new_page
,
nod_flag
);
n1
=
0
;
n2
=
0
;
n1
=
n2
=
0
;
for
(
cur
=
task
;
cur
<
stop
;
++
cur
)
{
uchar
*
to
;
...
...
ndb/src/ndbapi/Ndb.cpp
View file @
9c45c28d
...
...
@@ -230,9 +230,10 @@ Remark: Disconnect all connections to the database.
void
Ndb
::
doDisconnect
()
{
DBUG_ENTER
(
"Ndb::doDisconnect"
);
NdbTransaction
*
tNdbCon
;
CHECK_STATUS_MACRO_VOID
;
/* DBUG_ENTER must be after CHECK_STATUS_MACRO_VOID because of 'return' */
DBUG_ENTER
(
"Ndb::doDisconnect"
);
Uint32
tNoOfDbNodes
=
theImpl
->
theNoOfDBnodes
;
Uint8
*
theDBnodes
=
theImpl
->
theDBnodes
;
...
...
sql/field_conv.cc
View file @
9c45c28d
...
...
@@ -605,6 +605,10 @@ void field_conv(Field *to,Field *from)
to
->
type
()
!=
FIELD_TYPE_DATE
&&
to
->
type
()
!=
FIELD_TYPE_DATETIME
))
{
// Identical fields
#ifdef HAVE_purify
/* This may happen if one does 'UPDATE ... SET x=x' */
if
(
to
->
ptr
!=
from
->
ptr
)
#endif
memcpy
(
to
->
ptr
,
from
->
ptr
,
to
->
pack_length
());
return
;
}
...
...
sql/item_sum.cc
View file @
9c45c28d
...
...
@@ -584,13 +584,8 @@ bool Item_sum_distinct::setup(THD *thd)
{
List
<
create_field
>
field_list
;
create_field
field_def
;
/* field definition */
DBUG_ENTER
(
"Item_sum_distinct::setup"
);
/*
Setup can be called twice for ROLLUP items. This is a bug.
Please add DBUG_ASSERT(tree == 0) here when it's fixed.
*/
DBUG_ASSERT
(
tree
==
0
);
/*
Virtual table and the tree are created anew on each re-execution of
...
...
sql/sql_delete.cc
View file @
9c45c28d
...
...
@@ -48,7 +48,7 @@ bool mysql_delete(THD *thd, TABLE_LIST *table_list, COND *conds,
{
my_error
(
ER_VIEW_DELETE_MERGE_VIEW
,
MYF
(
0
),
table_list
->
view_db
.
str
,
table_list
->
view_name
.
str
);
DBUG_RETURN
(
-
1
);
DBUG_RETURN
(
TRUE
);
}
table
->
file
->
info
(
HA_STATUS_VARIABLE
|
HA_STATUS_NO_LOCK
);
thd
->
proc_info
=
"init"
;
...
...
sql/sql_parse.cc
View file @
9c45c28d
...
...
@@ -1270,8 +1270,10 @@ void free_items(Item *item)
void
cleanup_items
(
Item
*
item
)
{
DBUG_ENTER
(
"cleanup_items"
);
for
(;
item
;
item
=
item
->
next
)
item
->
cleanup
();
DBUG_VOID_RETURN
;
}
int
mysql_table_dump
(
THD
*
thd
,
char
*
db
,
char
*
tbl_name
,
int
fd
)
...
...
sql/sql_select.cc
View file @
9c45c28d
...
...
@@ -12659,8 +12659,10 @@ static bool setup_sum_funcs(THD *thd, Item_sum **func_ptr)
Item_sum
*
func
;
DBUG_ENTER
(
"setup_sum_funcs"
);
while
((
func
=
*
(
func_ptr
++
)))
{
if
(
func
->
setup
(
thd
))
DBUG_RETURN
(
TRUE
);
}
DBUG_RETURN
(
FALSE
);
}
...
...
@@ -12947,8 +12949,6 @@ bool JOIN::rollup_make_fields(List<Item> &fields_arg, List<Item> &sel_fields,
*/
item
=
item
->
copy_or_same
(
thd
);
((
Item_sum
*
)
item
)
->
make_unique
();
if
(((
Item_sum
*
)
item
)
->
setup
(
thd
))
return
1
;
*
(
*
func
)
=
(
Item_sum
*
)
item
;
(
*
func
)
++
;
}
...
...
strings/my_vsnprintf.c
View file @
9c45c28d
...
...
@@ -135,6 +135,16 @@ int my_vsnprintf(char *to, size_t n, const char* fmt, va_list ap)
to
+=
res_length
;
continue
;
}
else
if
(
*
fmt
==
'c'
)
/* Character parameter */
{
register
int
larg
;
if
(
to
==
end
)
break
;
larg
=
va_arg
(
ap
,
int
);
*
to
++=
(
char
)
larg
;
continue
;
}
/* We come here on '%%', unknown code or too long parameter */
if
(
to
==
end
)
break
;
...
...
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