@@ -3663,7 +3663,7 @@ int ha_connect::update_row(const uchar *old_data, const uchar *new_data)
3663
3663
3664
3664
// Check values for possible change in indexed column
3665
3665
if ((rc= CheckRecord (g, old_data, new_data)))
3666
- DBUG_RETURN (rc);
3666
+ DBUG_RETURN (rc);
3667
3667
3668
3668
if (CntUpdateRow (g, tdbp)) {
3669
3669
DBUG_PRINT (" update_row" , (" %s" , g->Message ));
@@ -4712,7 +4712,7 @@ int ha_connect::start_stmt(THD *thd, thr_lock_type lock_type)
4712
4712
case TL_WRITE_ONLY:
4713
4713
newmode= MODE_WRITE;
4714
4714
break ;
4715
- case TL_READ:
4715
+ case TL_READ:
4716
4716
case TL_READ_WITH_SHARED_LOCKS:
4717
4717
case TL_READ_HIGH_PRIORITY:
4718
4718
case TL_READ_NO_INSERT:
@@ -4950,7 +4950,7 @@ int ha_connect::external_lock(THD *thd, int lock_type)
4950
4950
int ha_connect::check_stmt (PGLOBAL g, MODE newmode, bool cras)
4951
4951
{
4952
4952
int rc= 0 ;
4953
- DBUG_ENTER (" ha_connect::check_lock " );
4953
+ DBUG_ENTER (" ha_connect::check_stmt " );
4954
4954
4955
4955
// If this is the start of a new query, cleanup the previous one
4956
4956
if (xp->CheckCleanup ()) {
@@ -4966,7 +4966,7 @@ int ha_connect::check_stmt(PGLOBAL g, MODE newmode, bool cras)
4966
4966
4967
4967
// Set or reset the good database environment
4968
4968
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 );
4970
4970
rc= HA_ERR_INTERNAL_ERROR;
4971
4971
// This can NOT be called without open called first, but
4972
4972
// the table can have been closed since then
@@ -4987,7 +4987,7 @@ int ha_connect::check_stmt(PGLOBAL g, MODE newmode, bool cras)
4987
4987
} // endif tdbp
4988
4988
4989
4989
if (trace (1 ))
4990
- htrc (" check_lock : rc=%d\n " , rc);
4990
+ htrc (" check_stmt : rc=%d\n " , rc);
4991
4991
4992
4992
DBUG_RETURN (rc);
4993
4993
} // end of check_stmt
0 commit comments