Changeset: 0a15da0ec3b3 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/0a15da0ec3b3 Modified Files: clients/Tests/exports.stable.out sql/server/sql_mvc.h Branch: Mar2025 Log Message:
Try to fix windows link error. odbc_loader.obj : error LNK2019: unresolved external symbol schema_bind_type referenced in function map_rescol_type [D:\a\MonetDB\MonetDB\build\sql\backends\monet5\vaults\odbc\odbc_loader.vcxproj] 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 @@ -1663,6 +1663,7 @@ list *sa_list(allocator *sa); char *sa_message(allocator *sa, _In_z_ _Printf_format_string_ const char *format, ...) __attribute__((__format__(__printf__, 2, 3))); msettings *sa_msettings_create(allocator *sa); char *sa_msettings_to_string(const msettings *mp, allocator *sa, size_t size_hint); +sql_type *schema_bind_type(mvc *sql, sql_schema *s, const char *name); str sht_dec2_bte(bte *res, const int *s1, const sht *v); str sht_dec2_dbl(dbl *res, const int *s1, const sht *v); str sht_dec2_flt(flt *res, const int *s1, const sht *v); diff --git a/sql/server/sql_mvc.h b/sql/server/sql_mvc.h --- a/sql/server/sql_mvc.h +++ b/sql/server/sql_mvc.h @@ -194,7 +194,7 @@ sql_export str mvc_rollback(mvc *c, int extern str mvc_release(mvc *c, const char *name); extern sql_type *mvc_bind_type(mvc *sql, const char *name); -extern sql_type *schema_bind_type(mvc *sql, sql_schema * s, const char *name); +sql_export sql_type *schema_bind_type(mvc *sql, sql_schema * s, const char *name); sql_export sql_schema *mvc_bind_schema(mvc *c, const char *sname); sql_export sql_table *mvc_bind_table(mvc *c, sql_schema *s, const char *tname); _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
