~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/handler/ha_innodb.cc

  • Committer: Brian Aker
  • Date: 2008-08-09 16:47:00 UTC
  • Revision ID: brian@tangent.org-20080809164700-j711y0h3jj4c07dd
Second pass.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1120
1120
                /* In the SERIALIZABLE mode we add LOCK IN SHARE MODE to every
1121
1121
                plain SELECT if AUTOCOMMIT is not on. */
1122
1122
 
1123
 
                return((my_bool)FALSE);
 
1123
                return false;
1124
1124
        }
1125
1125
 
1126
1126
        if (trx->has_search_latch) {
1162
1162
                then trx2 would have already invalidated the cache. Thus we
1163
1163
                can trust the result in the cache is ok for this query. */
1164
1164
 
1165
 
                return((my_bool)TRUE);
 
1165
          return true;
1166
1166
        }
1167
1167
 
1168
1168
        /* Normalize the table name to InnoDB format */
1188
1188
 
1189
1189
                /* printf("Query cache for %s permitted\n", norm_name); */
1190
1190
 
1191
 
                return((my_bool)TRUE);
 
1191
          return true;
1192
1192
        }
1193
1193
 
1194
1194
        /* printf("Query cache for %s NOT permitted\n", norm_name); */
1195
1195
 
1196
 
        return((my_bool)FALSE);
 
1196
        return false;
1197
1197
}
1198
1198
 
1199
1199
/*********************************************************************