Changeset: 42260f5fdabc for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=42260f5fdabc
Modified Files:
        sql/storage/bat/bat_storage.c
Branch: unlock
Log Message:

use correct type


diffs (13 lines):

diff --git a/sql/storage/bat/bat_storage.c b/sql/storage/bat/bat_storage.c
--- a/sql/storage/bat/bat_storage.c
+++ b/sql/storage/bat/bat_storage.c
@@ -168,8 +168,7 @@ static storage *
 temp_dup_storage(ulng tid)
 {
        storage *bat = ZNEW(storage);
-       /* temp has no segments? */
-       if (temp_dup_cs(&bat->cs, tid, TYPE_oid)) {
+       if (temp_dup_cs(&bat->cs, tid, TYPE_msk)) {
                _DELETE(bat);
                return NULL;
        }
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to