Changeset: d6d09e31ef89 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/d6d09e31ef89
Modified Files:
sql/storage/store.c
Branch: mangled
Log Message:
Use proper upper bound.
diffs (12 lines):
diff --git a/sql/storage/store.c b/sql/storage/store.c
--- a/sql/storage/store.c
+++ b/sql/storage/store.c
@@ -67,7 +67,7 @@ store_oldest_pending(sqlstore *store)
static inline bool
instore(sqlid id)
{
- if (id >= 2000 && id <= 2164)
+ if (id >= 2000 && id <= 2165)
return true;
return false;
}
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list