Line data Source code
1 : /* 2 : * SPDX-License-Identifier: MPL-2.0 3 : * 4 : * This Source Code Form is subject to the terms of the Mozilla Public 5 : * License, v. 2.0. If a copy of the MPL was not distributed with this 6 : * file, You can obtain one at http://mozilla.org/MPL/2.0/. 7 : * 8 : * Copyright 2024 MonetDB Foundation; 9 : * Copyright August 2008 - 2023 MonetDB B.V.; 10 : * Copyright 1997 - July 2008 CWI. 11 : */ 12 : 13 : #include "monetdb_config.h" 14 : #include "sql.h" 15 : #include "mal_backend.h" 16 : 17 : backend * 18 49859 : backend_reset(backend *b) 19 : { 20 49859 : if (b->subbackend) 21 0 : b->subbackend->reset(b->subbackend); 22 49859 : *b = (backend) { 23 49859 : .mvc = b->mvc, 24 : .client = b->client, 25 49859 : .out = b->client->fdout, 26 : .output_format = OFMT_CSV, 27 : .rowcnt = -1, 28 : .last_id = -1, 29 49859 : .subbackend = b->subbackend, 30 : }; 31 49859 : return b; 32 : } 33 : 34 : backend * 35 49017 : backend_create(mvc *m, Client c) 36 : { 37 49017 : backend *b = MNEW(backend); 38 : 39 49017 : if (!b) 40 : return NULL; 41 49017 : *b = (backend) { 42 : .mvc = m, 43 : .client = c, 44 : }; 45 49017 : if (b && be_funcs.sub_backend) 46 0 : b->subbackend = be_funcs.sub_backend(m, c); 47 49017 : return backend_reset(b); 48 : } 49 : 50 : void 51 49017 : backend_destroy(backend *b) 52 : { 53 49017 : if (b->subbackend) 54 0 : b->subbackend->destroy(b->subbackend); 55 49017 : _DELETE(b); 56 49017 : } 57 : 58 : /* for recursive functions, if the implementation is not set yet, take it from the current compilation */ 59 : str 60 665651 : backend_function_imp(backend *b, sql_func *f) 61 : { 62 665651 : str res = sql_func_imp(f); 63 : 64 665651 : if (b->mvc->forward && strcmp(res, "") == 0 && b->mvc->forward->base.id == f->base.id) 65 6 : res = b->fimp; 66 665651 : return res; 67 : }