1 | //===----------------------------------------------------------------------===// |
2 | // DuckDB |
3 | // |
4 | // duckdb/parser/parser_options.hpp |
5 | // |
6 | // |
7 | //===----------------------------------------------------------------------===// |
8 | |
9 | #pragma once |
10 | |
11 | #include "duckdb/common/common.hpp" |
12 | |
13 | namespace duckdb { |
14 | class ParserExtension; |
15 | |
16 | struct ParserOptions { |
17 | bool preserve_identifier_case = true; |
18 | bool integer_division = false; |
19 | idx_t max_expression_depth = 1000; |
20 | const vector<ParserExtension> *extensions = nullptr; |
21 | }; |
22 | |
23 | } // namespace duckdb |
24 | |