Changeset: 63be080638ec for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=63be080638ec
Modified Files:
sql/storage/store.c
Branch: Feb2013
Log Message:
Fixed FATAL crash with dropping merge table:
rollforward_del_table() need to return int rather than sql_table*
diffs (19 lines):
diff --git a/sql/storage/store.c b/sql/storage/store.c
--- a/sql/storage/store.c
+++ b/sql/storage/store.c
@@ -2460,12 +2460,13 @@ rollforward_add_table(sql_trans *tr, sql
return t;
}
-static sql_table *
+static int
rollforward_del_table(sql_trans *tr, sql_table *t, int mode)
{
(void) tr;
+ (void) t;
(void) mode;
- return t;
+ return LOG_OK;
}
static sql_table *
_______________________________________________
checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list