Changeset: 1c7f67cc1606 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/1c7f67cc1606 Modified Files: sql/include/sql_catalog.h Branch: Jul2021 Log Message:
fix issue # 7361. The logchanges was kept in an int instead of a lng. diffs (12 lines): diff --git a/sql/include/sql_catalog.h b/sql/include/sql_catalog.h --- a/sql/include/sql_catalog.h +++ b/sql/include/sql_catalog.h @@ -313,7 +313,7 @@ typedef struct sql_trans { list *dependencies; /* list of dependencies created (list of sqlids from the objects) */ list *depchanges; /* list of dependencies changed (it would be tested for conflicts at the end of the transaction) */ - int logchanges; /* count number of changes to be applied to the wal */ + lng logchanges; /* count number of changes to be applied to the wal */ int active; /* is active transaction */ int status; /* status of the last query */ _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org