Changeset: e148ae3c6728 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/e148ae3c6728 Modified Files: clients/Tests/exports.stable.out Branch: no_type_bat Log Message:
approved exported functions diffs (29 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 @@ -582,6 +582,11 @@ ssize_t ptrToStr(str *dst, size_t *len, const ptr ptr_nil; struct dirent *readdir(DIR *dir); void rewinddir(DIR *dir); +void *sa_alloc(allocator *sa, size_t sz); +allocator *sa_create(allocator *pa); +allocator *sa_reset(allocator *sa); +char *sa_strdup(allocator *sa, const char *s); +void *sa_zalloc(allocator *sa, size_t sz); ssize_t shtFromStr(const char *src, size_t *len, sht **dst, bool external); ssize_t shtToStr(str *dst, size_t *len, const sht *src, bool external); const sht sht_nil; @@ -1607,13 +1612,8 @@ cq *qc_find(qc *cache, int id); cq *qc_insert(qc *cache, allocator *sa, sql_rel *r, symbol *s, list *params, mapi_query_t type, char *codedstr, int no_mitosis); sql_rel *rel_project(allocator *sa, sql_rel *l, list *e); void res_tables_destroy(res_table *results); -void *sa_alloc(allocator *sa, size_t sz); -allocator *sa_create(allocator *pa); list *sa_list(allocator *sa); char *sa_message(allocator *sa, _In_z_ _Printf_format_string_ const char *format, ...) __attribute__((__format__(__printf__, 2, 3))); -allocator *sa_reset(allocator *sa); -char *sa_strdup(allocator *sa, const char *s); -void *sa_zalloc(allocator *sa, size_t sz); void scanner_query_processed(struct scanner *s); str sht_dec2_bte(bte *res, const int *s1, const sht *v); str sht_dec2_dbl(dbl *res, const int *s1, const sht *v); _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
