summaryrefslogtreecommitdiff
path: root/innobase/row
diff options
context:
space:
mode:
authorunknown <heikki@hundin.mysql.fi>2002-09-20 05:44:41 +0300
committerunknown <heikki@hundin.mysql.fi>2002-09-20 05:44:41 +0300
commit010a8b922eea10821c68d8dd0fdd74a1f5d4208d (patch)
tree6bc7d58cce92983c1eb690b6b9272aeeedef1436 /innobase/row
parentce62618ca739649bbe06eec57729e4d860617274 (diff)
downloadmariadb-git-010a8b922eea10821c68d8dd0fdd74a1f5d4208d.tar.gz
srv0srv.h, srv0srv.c, row0mysql.c:
Put back a change unintentionally removed in the last 2 pushes innobase/row/row0mysql.c: Put back a change unintentionally removed in the last 2 pushes innobase/srv/srv0srv.c: Put back a change unintentionally removed in the last 2 pushes innobase/include/srv0srv.h: Put back a change unintentionally removed in the last 2 pushes
Diffstat (limited to 'innobase/row')
-rw-r--r--innobase/row/row0mysql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/innobase/row/row0mysql.c b/innobase/row/row0mysql.c
index 43eef8c5092..cea8f1316fe 100644
--- a/innobase/row/row0mysql.c
+++ b/innobase/row/row0mysql.c
@@ -1186,7 +1186,7 @@ row_create_table_for_mysql(
ut_ad(trx->mysql_thread_id == os_thread_get_curr_id());
ut_ad(mutex_own(&(dict_sys->mutex)));
- if (srv_created_new_raw || srv_force_recovery) {
+ if (srv_created_new_raw) {
fprintf(stderr,
"InnoDB: A new raw disk partition was initialized or\n"
"InnoDB: innodb_force_recovery is on: we do not allow\n"
@@ -1707,7 +1707,7 @@ row_drop_table_for_mysql(
ut_ad(trx->mysql_thread_id == os_thread_get_curr_id());
ut_a(name != NULL);
- if (srv_created_new_raw || srv_force_recovery) {
+ if (srv_created_new_raw) {
fprintf(stderr,
"InnoDB: A new raw disk partition was initialized or\n"
"InnoDB: innodb_force_recovery is on: we do not allow\n"