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 | extern int describe_table(Mapi mid, const char *schema, const char *tname, stream *toConsole, bool foreign, bool databaseDump); |
10 | extern int describe_sequence(Mapi mid, const char *schema, const char *sname, stream *toConsole); |
11 | extern int describe_schema(Mapi mid, const char *sname, stream *toConsole); |
12 | extern int dump_table(Mapi mid, const char *schema, const char *tname, stream *toConsole, bool describe, bool foreign, bool useInserts, bool databaseDump); |
13 | extern int dump_functions(Mapi mid, stream *toConsole, char set_schema, const char *sname, const char *fname, const char *id); |
14 | extern int dump_database(Mapi mid, stream *toConsole, bool describe, bool useInserts); |
15 | extern void dump_version(Mapi mid, stream *toConsole, const char *prefix); |
16 | |
17 | /* used for backward compatibility with older server versions */ |
18 | extern const char *(Mapi mid); |
19 | |