Changeset: 6b3974d0c798 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/6b3974d0c798 Modified Files: clients/Tests/exports.stable.out sql/backends/monet5/sql.h Branch: Dec2025 Log Message:
Function freeVariables is now called from monetdbe library, so we need to export. Unfortunately, this is an ABI change. diffs (23 lines): diff --git a/clients/Tests/exports.stable.out b/clients/Tests/exports.stable.out --- a/clients/Tests/exports.stable.out +++ b/clients/Tests/exports.stable.out @@ -1569,6 +1569,7 @@ str flt_num2dec_bte(Client ctx, bte *res str flt_num2dec_int(Client ctx, int *res, const flt *v, const int *d2, const int *s2); str flt_num2dec_lng(Client ctx, lng *res, const flt *v, const int *d2, const int *s2); str flt_num2dec_sht(Client ctx, sht *res, const flt *v, const int *d2, const int *s2); +void freeVariables(Client c, MalBlkPtr mb, MalStkPtr glb, int oldvtop); str getBackendContext(Client cntxt, backend **be); str getSQLContext(Client cntxt, MalBlkPtr mb, mvc **c, backend **b); str hge_dec2_bte(Client ctx, bte *res, const int *s1, const hge *v); diff --git a/sql/backends/monet5/sql.h b/sql/backends/monet5/sql.h --- a/sql/backends/monet5/sql.h +++ b/sql/backends/monet5/sql.h @@ -274,7 +274,7 @@ extern str second_interval_daytime(Clien sql5_export str checkSQLContext(Client cntxt); sql5_export str getSQLContext(Client cntxt, MalBlkPtr mb, mvc **c, backend **b); -extern void freeVariables(Client c, MalBlkPtr mb, MalStkPtr glb, int oldvtop); +sql5_export void freeVariables(Client c, MalBlkPtr mb, MalStkPtr glb, int oldvtop); extern str second_interval_2_daytime(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); extern str timestamp_2_daytime(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); extern str date_2_timestamp(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
