1 | /* |
2 | * This Source Code Form is subject to the terms of the Mozilla Public |
3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
5 | * |
6 | * Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. |
7 | */ |
8 | |
9 | #ifndef _BAT_EXTENSIONS_ |
10 | #define _BAT_EXTENSIONS_ |
11 | |
12 | #include "mal_client.h" |
13 | #include "mal_interpreter.h" |
14 | #include "bat5.h" |
15 | #include "algebra.h" |
16 | |
17 | mal_export str CMDBATnewColumn(Client cntxt, MalBlkPtr m, MalStkPtr s, InstrPtr p); |
18 | mal_export str CMDBATnew(Client cntxt, MalBlkPtr m, MalStkPtr s, InstrPtr p); |
19 | mal_export str CMDBATnew_persistent(Client cntxt, MalBlkPtr m, MalStkPtr s, InstrPtr p); |
20 | mal_export str CMDBATsingle(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); |
21 | mal_export str CMDBATpartition(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); |
22 | mal_export str CMDBATpartition2(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); |
23 | mal_export str CMDBATimprints(void *ret, bat *bid); |
24 | mal_export str CMDBATimprintsize(lng *ret, bat *bid); |
25 | |
26 | #endif /* _BAT_EXTENSIONS_ */ |
27 | |