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 _REL_BIN_H_ |
10 | #define _REL_BIN_H_ |
11 | |
12 | #include "rel_semantic.h" |
13 | #include "sql_statement.h" |
14 | #include "mal_backend.h" |
15 | |
16 | extern stmt *output_rel_bin(backend *be, sql_rel *rel); |
17 | |
18 | extern stmt *sql_parse(backend *be, sql_allocator *sa, const char *query, char mode); |
19 | |
20 | #endif /*_REL_BIN_H_*/ |
21 |