sql/parsers.rs
1// Copyright 2023 Greptime Team
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15pub(crate) mod admin_parser;
16mod alter_parser;
17pub(crate) mod copy_parser;
18pub(crate) mod create_parser;
19pub(crate) mod cursor_parser;
20pub(crate) mod deallocate_parser;
21pub(crate) mod delete_parser;
22pub(crate) mod describe_parser;
23pub(crate) mod drop_parser;
24pub(crate) mod error;
25pub(crate) mod execute_parser;
26pub(crate) mod explain_parser;
27pub(crate) mod insert_parser;
28pub(crate) mod prepare_parser;
29pub(crate) mod query_parser;
30pub(crate) mod set_var_parser;
31pub(crate) mod show_parser;
32pub(crate) mod tql_parser;
33pub(crate) mod truncate_parser;
34pub(crate) mod utils;