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
9a781af1
Commit
9a781af1
authored
Sep 14, 2004
by
jani@a80-186-8-224.elisa-laajakaista.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a couple of bugs.
parent
574f850a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
10 deletions
+19
-10
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+17
-9
sql/sql_help.cc
sql/sql_help.cc
+1
-1
No files found.
BitKeeper/etc/logging_ok
View file @
9a781af1
...
...
@@ -64,6 +64,7 @@ igor@rurik.mysql.com
ingo@mysql.com
jan@hundin.mysql.fi
jani@a80-186-24-72.elisa-laajakaista.fi
jani@a80-186-8-224.elisa-laajakaista.fi
jani@dsl-jkl1657.dial.inet.fi
jani@dsl-kpogw4gb5.dial.inet.fi
jani@hynda.(none)
...
...
sql/ha_ndbcluster.cc
View file @
9a781af1
...
...
@@ -1367,9 +1367,11 @@ int ha_ndbcluster::write_row(byte *record)
NdbConnection
*
trans
=
m_active_trans
;
NdbOperation
*
op
;
int
res
;
THD
*
thd
=
current_thd
;
DBUG_ENTER
(
"write_row"
);
statistic_increment
(
ha_write_count
,
&
LOCK_status
);
statistic_increment
(
thd
->
status_var
.
ha_write_count
,
&
LOCK_status
);
if
(
table
->
timestamp_default_now
)
update_timestamp
(
record
+
table
->
timestamp_default_now
-
1
);
has_auto_increment
=
(
table
->
next_number_field
&&
record
==
table
->
record
[
0
]);
...
...
@@ -1499,7 +1501,7 @@ int ha_ndbcluster::update_row(const byte *old_data, byte *new_data)
uint
i
;
DBUG_ENTER
(
"update_row"
);
statistic_increment
(
ha_update_count
,
&
LOCK_status
);
statistic_increment
(
thd
->
status_var
.
ha_update_count
,
&
LOCK_status
);
if
(
table
->
timestamp_on_update_now
)
update_timestamp
(
new_data
+
table
->
timestamp_on_update_now
-
1
);
...
...
@@ -1606,12 +1608,13 @@ int ha_ndbcluster::update_row(const byte *old_data, byte *new_data)
int
ha_ndbcluster
::
delete_row
(
const
byte
*
record
)
{
THD
*
thd
=
current_thd
;
NdbConnection
*
trans
=
m_active_trans
;
NdbResultSet
*
cursor
=
m_active_cursor
;
NdbOperation
*
op
;
DBUG_ENTER
(
"delete_row"
);
statistic_increment
(
ha_delete_count
,
&
LOCK_status
);
statistic_increment
(
thd
->
status_var
.
ha_delete_count
,
&
LOCK_status
);
if
(
cursor
)
{
...
...
@@ -1926,7 +1929,7 @@ int ha_ndbcluster::index_read_idx(byte *buf, uint index_no,
const
byte
*
key
,
uint
key_len
,
enum
ha_rkey_function
find_flag
)
{
statistic_increment
(
ha_read_key_count
,
&
LOCK_status
);
statistic_increment
(
current_thd
->
status_var
.
ha_read_key_count
,
&
LOCK_status
);
DBUG_ENTER
(
"index_read_idx"
);
DBUG_PRINT
(
"enter"
,
(
"index_no: %u, key_len: %u"
,
index_no
,
key_len
));
index_init
(
index_no
);
...
...
@@ -1939,7 +1942,8 @@ int ha_ndbcluster::index_next(byte *buf)
DBUG_ENTER
(
"index_next"
);
int
error
=
1
;
statistic_increment
(
ha_read_next_count
,
&
LOCK_status
);
statistic_increment
(
current_thd
->
status_var
.
ha_read_next_count
,
&
LOCK_status
);
DBUG_RETURN
(
next_result
(
buf
));
}
...
...
@@ -1947,7 +1951,8 @@ int ha_ndbcluster::index_next(byte *buf)
int
ha_ndbcluster
::
index_prev
(
byte
*
buf
)
{
DBUG_ENTER
(
"index_prev"
);
statistic_increment
(
ha_read_prev_count
,
&
LOCK_status
);
statistic_increment
(
current_thd
->
status_var
.
ha_read_prev_count
,
&
LOCK_status
);
DBUG_RETURN
(
1
);
}
...
...
@@ -1955,7 +1960,8 @@ int ha_ndbcluster::index_prev(byte *buf)
int
ha_ndbcluster
::
index_first
(
byte
*
buf
)
{
DBUG_ENTER
(
"index_first"
);
statistic_increment
(
ha_read_first_count
,
&
LOCK_status
);
statistic_increment
(
current_thd
->
status_var
.
ha_read_first_count
,
&
LOCK_status
);
DBUG_RETURN
(
1
);
}
...
...
@@ -2077,7 +2083,8 @@ int ha_ndbcluster::rnd_end()
int
ha_ndbcluster
::
rnd_next
(
byte
*
buf
)
{
DBUG_ENTER
(
"rnd_next"
);
statistic_increment
(
ha_read_rnd_next_count
,
&
LOCK_status
);
statistic_increment
(
current_thd
->
status_var
.
ha_read_rnd_next_count
,
&
LOCK_status
);
if
(
!
m_active_cursor
)
DBUG_RETURN
(
full_table_scan
(
buf
));
...
...
@@ -2095,7 +2102,8 @@ int ha_ndbcluster::rnd_next(byte *buf)
int
ha_ndbcluster
::
rnd_pos
(
byte
*
buf
,
byte
*
pos
)
{
DBUG_ENTER
(
"rnd_pos"
);
statistic_increment
(
ha_read_rnd_count
,
&
LOCK_status
);
statistic_increment
(
current_thd
->
status_var
.
ha_read_rnd_count
,
&
LOCK_status
);
// The primary key for the record is stored in pos
// Perform a pk_read using primary key "index"
DBUG_RETURN
(
pk_read
(
pos
,
ref_length
,
buf
));
...
...
sql/sql_help.cc
View file @
9a781af1
...
...
@@ -640,7 +640,7 @@ int mysqld_help(THD *thd, const char *mask)
uint
mlen
=
strlen
(
mask
);
MEM_ROOT
*
mem_root
=
&
thd
->
mem_root
;
if
(
res
=
open_and_lock_tables
(
thd
,
tables
))
if
(
(
res
=
open_and_lock_tables
(
thd
,
tables
)
))
goto
end
;
/*
Init tables and fields to be usable from items
...
...
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