Skip to content

Commit b090c42

Browse files
committed
sql_parser: update progress
1 parent 24ceee9 commit b090c42

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ The items were taken from the official SQLite documentation
5858

5959
### Advanced statements
6060

61-
#### SELECT Statement ![progress](https://progress-bar.xyz/5/?scale=9&suffix=%%%20(5%20of%209)&width=140)
61+
#### SELECT Statement ![progress](https://progress-bar.xyz/6/?scale=9&suffix=%%%20(6%20of%209)&width=140)
6262

6363
1. [select-core-stmt](https://www.sqlite.org/syntax/select-core.html)
6464
1. [values-stmt](https://www.sqlite.org/syntax/select-core.html) ✅
6565
1. [result-columns](https://www.sqlite.org/syntax/result-column.html) ✅
6666
1. [table-or-subquery](https://www.sqlite.org/lang_select.html#tablename) ✅
6767
1. [join-clauses](https://www.sqlite.org/syntax/join-clause.html) ✅
6868
1. [where-group-by-having-clause](https://www.sqlite.org/lang_select.html#where) ✅
69-
1. [window-functions](https://www.sqlite.org/syntax/window-defn.html)
69+
1. [window-functions](https://www.sqlite.org/syntax/window-defn.html) ✅
7070
1. [with-compound-stmt](https://www.sqlite.org/syntax/factored-select-stmt.html)
7171
1. [order-by-and-limit-clause](https://www.sqlite.org/lang_select.html#orderby)
7272
1. [common-table-expressions](https://www.sqlite.org/syntax/common-table-expression.html)

src/parser/select/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ impl<'a> SelectStatementParser for Parser<'a> {
402402
mod test_utils {
403403
use crate::{
404404
DistinctType, Expression, Identifier, NamedWindowDefinition, SelectFrom, SelectFromTable,
405-
SelectItem, SelectStatement, SelectStatementType, WindowDefinition,
405+
SelectItem, SelectStatement, SelectStatementType,
406406
};
407407

408408
pub fn select_statement_with_columns(

0 commit comments

Comments
 (0)