1 | #pragma once |
---|---|
2 | |
3 | #include "duckdb/catalog/catalog.hpp" |
4 | #include "duckdb.hpp" |
5 | |
6 | namespace imdb { |
7 | //! Adds the IMDB tables to the database |
8 | void dbgen(duckdb::DuckDB &database); |
9 | |
10 | //! Gets the specified IMDB JOB Query number as a string |
11 | std::string get_query(int query); |
12 | |
13 | } // namespace imdb |
14 |