Skip to content

Commit 66197aa

Browse files
committed
Typo
1 parent 0a43be3 commit 66197aa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

storage/connect/ha_connect.cc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3663,7 +3663,7 @@ int ha_connect::update_row(const uchar *old_data, const uchar *new_data)
36633663

36643664
// Check values for possible change in indexed column
36653665
if ((rc= CheckRecord(g, old_data, new_data)))
3666-
DBUG_RETURN(rc);
3666+
DBUG_RETURN(rc);
36673667

36683668
if (CntUpdateRow(g, tdbp)) {
36693669
DBUG_PRINT("update_row", ("%s", g->Message));
@@ -4712,7 +4712,7 @@ int ha_connect::start_stmt(THD *thd, thr_lock_type lock_type)
47124712
case TL_WRITE_ONLY:
47134713
newmode= MODE_WRITE;
47144714
break;
4715-
case TL_READ:
4715+
case TL_READ:
47164716
case TL_READ_WITH_SHARED_LOCKS:
47174717
case TL_READ_HIGH_PRIORITY:
47184718
case TL_READ_NO_INSERT:
@@ -4950,7 +4950,7 @@ int ha_connect::external_lock(THD *thd, int lock_type)
49504950
int ha_connect::check_stmt(PGLOBAL g, MODE newmode, bool cras)
49514951
{
49524952
int rc= 0;
4953-
DBUG_ENTER("ha_connect::check_lock");
4953+
DBUG_ENTER("ha_connect::check_stmt");
49544954

49554955
// If this is the start of a new query, cleanup the previous one
49564956
if (xp->CheckCleanup()) {
@@ -4966,7 +4966,7 @@ int ha_connect::check_stmt(PGLOBAL g, MODE newmode, bool cras)
49664966

49674967
// Set or reset the good database environment
49684968
if (CntCheckDB(g, this, GetDBName(NULL))) {
4969-
htrc("%p check_lock: %s\n", this, g->Message);
4969+
htrc("%p check_stmt: %s\n", this, g->Message);
49704970
rc= HA_ERR_INTERNAL_ERROR;
49714971
// This can NOT be called without open called first, but
49724972
// the table can have been closed since then
@@ -4987,7 +4987,7 @@ int ha_connect::check_stmt(PGLOBAL g, MODE newmode, bool cras)
49874987
} // endif tdbp
49884988

49894989
if (trace(1))
4990-
htrc("check_lock: rc=%d\n", rc);
4990+
htrc("check_stmt: rc=%d\n", rc);
49914991

49924992
DBUG_RETURN(rc);
49934993
} // end of check_stmt

0 commit comments

Comments
 (0)