1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
//! SQL validation module for Athena CLI.
//!
//! This module provides functionality to validate SQL queries before sending them to AWS Athena.
//! It uses the sqlparser crate to parse and validate SQL syntax according to ANSI SQL standards,
//! which is compatible with Athena's SQL dialect.
//!
//! ## Features
//!
//! - SQL syntax validation using ANSI SQL standards
//! - Detailed error messages for syntax issues
//! - Validation before query execution to save time and costs
use ;
use ;
use AnsiDialect;
use Parser;
/// Validates the syntax of an Athena SQL query.
///
/// This function uses the sqlparser crate to parse the query using ANSI SQL standards,
/// which is compatible with Athena's SQL syntax. It returns a Result that indicates
/// whether the query syntax is valid.
///
/// # Arguments
///
/// * `query` - The SQL query string to validate
///
/// # Returns
///
/// * `Ok(())` if the query syntax is valid
/// * `Err(anyhow::Error)` with a descriptive error message if the syntax is invalid
///
/// # Examples
///
/// ```
/// use athena_cli::validation::validate_query_syntax;
///
/// // Valid query
/// let valid_query = "SELECT * FROM my_table WHERE id = 1";
/// assert!(validate_query_syntax(valid_query).is_ok());
///
/// // Invalid query with trailing comma
/// let invalid_query = "SELECT id, FROM my_table";
/// assert!(validate_query_syntax(invalid_query).is_err());
/// ```
/// Validates a SELECT query for common issues that might not be caught by the parser.
/// Checks if the query is a DDL (Data Definition Language) statement.
///
/// DDL statements include CREATE, ALTER, DROP, etc. This function is useful
/// for determining if a query will modify the database schema.
///
/// # Arguments
///
/// * `query` - The SQL query string to check
///
/// # Returns
///
/// * `true` if the query is a DDL statement
/// * `false` otherwise
///
/// # Examples
///
/// ```
/// use athena_cli::validation::is_ddl_statement;
///
/// assert!(is_ddl_statement("CREATE TABLE my_table (id INT)"));
/// assert!(is_ddl_statement("DROP TABLE my_table"));
/// assert!(!is_ddl_statement("SELECT * FROM my_table"));
/// ```
/// #[allow(dead_code)]
//pub fn is_ddl_statement(query: &str) -> bool {
//let query_upper = query.trim().to_uppercase();
//query_upper.starts_with("CREATE ") ||
//query_upper.starts_with("ALTER ") ||
//query_upper.starts_with("DROP ") ||
//query_upper.starts_with("TRUNCATE ") ||
//query_upper.starts_with("RENAME ")
//}
/// Checks if the query is a DML (Data Manipulation Language) statement.
///
/// DML statements include SELECT, INSERT, UPDATE, DELETE, etc. This function is useful
/// for determining if a query will modify data in the database.
///
/// # Arguments
///
/// * `query` - The SQL query string to check
///
/// # Returns
///
/// * `true` if the query is a DML statement
/// * `false` otherwise
///
/// # Examples
///
/// ```
/// use athena_cli::validation::is_dml_statement;
///
/// assert!(is_dml_statement("SELECT * FROM my_table"));
/// assert!(is_dml_statement("INSERT INTO my_table VALUES (1, 'test')"));
/// assert!(!is_dml_statement("CREATE TABLE my_table (id INT)"));
/// ```
/// #[allow(dead_code)]
//pub fn is_dml_statement(query: &str) -> bool {
//let query_upper = query.trim().to_uppercase();
//query_upper.starts_with("SELECT ") ||
//query_upper.starts_with("INSERT ") ||
//query_upper.starts_with("UPDATE ") ||
//query_upper.starts_with("DELETE ") ||
//query_upper.starts_with("MERGE ")
//}