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