Changeset: e329f42a6836 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/e329f42a6836
Modified Files:
        clients/Tests/exports.stable.out
Branch: default
Log Message:

approved output


diffs (45 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
@@ -1505,9 +1505,15 @@ str dbl_num2dec_bte(bte *res, const dbl 
 str dbl_num2dec_int(int *res, const dbl *v, const int *d2, const int *s2);
 str dbl_num2dec_lng(lng *res, const dbl *v, const int *d2, const int *s2);
 str dbl_num2dec_sht(sht *res, const dbl *v, const int *d2, const int *s2);
+sql_exp *exp_atom_int(sql_allocator *sa, int i);
+sql_exp *exp_atom_lng(sql_allocator *sa, lng l);
+sql_exp *exp_atom_ptr(sql_allocator *sa, void *s);
+sql_exp *exp_atom_str(sql_allocator *sa, const char *s, sql_subtype *st);
 stmt *exp_bin(backend *be, sql_exp *e, stmt *left, stmt *right, stmt *grp, 
stmt *ext, stmt *cnt, stmt *sel, int depth, int reduce, int push);
 sql_exp *exp_column(sql_allocator *sa, const char *rname, const char *name, 
sql_subtype *t, unsigned int card, int has_nils, int unique, int intern);
+sql_exp *exp_op(sql_allocator *sa, list *l, sql_subfunc *f);
 sql_table *find_table_or_view_on_scope(mvc *sql, sql_schema *s, const char 
*sname, const char *tname, const char *error, bool isView);
+int fl_register(char *name, fl_add_types_fptr add_types, fl_load_fptr fl_load);
 str flt_num2dec_bte(bte *res, const flt *v, const int *d2, const int *s2);
 str flt_num2dec_int(int *res, const flt *v, const int *d2, const int *s2);
 str flt_num2dec_lng(lng *res, const flt *v, const int *d2, const int *s2);
@@ -1576,6 +1582,7 @@ sql_schema *mvc_bind_schema(mvc *c, cons
 sql_table *mvc_bind_table(mvc *c, sql_schema *s, const char *tname);
 str mvc_commit(mvc *c, int chain, const char *name, bool enabling_auto_commit);
 int mvc_create_column(sql_column **col, mvc *m, sql_table *t, const char 
*name, sql_subtype *tpe);
+int mvc_create_table(sql_table **t, mvc *m, sql_schema *s, const char *name, 
int tt, bit system, int persistence, int commit_action, int sz, bit properties);
 int mvc_result_column(backend *be, const char *tn, const char *name, const 
char *typename, int digits, int scale, BAT *b);
 int mvc_result_table(backend *be, oid query_id, int nr_cols, mapi_query_t 
type);
 str mvc_rollback(mvc *c, int chain, const char *name, bool 
disabling_auto_commit);
@@ -1587,6 +1594,7 @@ cq *qc_find(qc *cache, int id);
 cq *qc_insert(qc *cache, sql_allocator *sa, sql_rel *r, symbol *s, list 
*params, mapi_query_t type, char *codedstr, int no_mitosis);
 sql_rel *rel_project(sql_allocator *sa, sql_rel *l, list *e);
 void res_tables_destroy(res_table *results);
+void *sa_alloc(sql_allocator *sa, size_t sz);
 sql_allocator *sa_create(sql_allocator *pa);
 list *sa_list(sql_allocator *sa);
 sql_allocator *sa_reset(sql_allocator *sa);
@@ -1611,6 +1619,9 @@ str sht_num2dec_flt(flt *res, const sht 
 str sht_num2dec_int(int *res, const sht *v, const int *d2, const int *s2);
 str sht_num2dec_lng(lng *res, const sht *v, const int *d2, const int *s2);
 str sht_num2dec_sht(sht *res, const sht *v, const int *d2, const int *s2);
+sql_subtype *sql_bind_subtype(sql_allocator *sa, const char *name, unsigned 
int digits, unsigned int scale);
+sql_subfunc *sql_find_func(mvc *sql, const char *sname, const char *fname, int 
nrargs, sql_ftype type, bool private, sql_subfunc *prev);
+int sql_find_subtype(sql_subtype *res, const char *name, unsigned int digits, 
unsigned int scale);
 void sql_init_subtype(sql_subtype *res, sql_type *t, unsigned int digits, 
unsigned int scale);
 void sql_register(const char *name, const unsigned char *code);
 int sql_trans_add_dependency_change(sql_trans *tr, sqlid id, 
sql_dependency_change_type tp);
_______________________________________________
checkin-list mailing list -- checkin-list@monetdb.org
To unsubscribe send an email to checkin-list-le...@monetdb.org

Reply via email to