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