Skip to content

Commit f6febdd

Browse files
committedDec 19, 2024
sql_parser: progress updated
1 parent d88f346 commit f6febdd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ The items were taken from the official SQLite documentation
8989
1. [insert-with-cte](https://www.sqlite.org/lang_insert.html) ✅
9090
1. [replace-stmt](https://www.sqlite.org/lang_replace.html) ✅
9191

92-
#### CREATE Statements ![progress](https://progress-bar.xyz/4/?scale=5&suffix=%%%20(4%20of%205)&width=140)
92+
#### CREATE Statements ![progress](https://progress-bar.xyz/5/?scale=5&suffix=%%%20(5%20of%205)&width=140)
9393
1. [create-virtual-table-stmt](https://www.sqlite.org/lang_createvtab.html) ✅
9494
1. [create-index-stmt](https://www.sqlite.org/lang_createindex.html) ✅
9595
1. [create-view-stmt](https://www.sqlite.org/lang_createview.html) ✅
9696
1. [create-table-stmt](https://www.sqlite.org/lang_createtable.html) ✅
97-
1. [create-trigger-stmt](https://www.sqlite.org/lang_createtrigger.html)
97+
1. [create-trigger-stmt](https://www.sqlite.org/lang_createtrigger.html) ✅
9898

9999
#### EXPLAIN Statements ![progress](https://progress-bar.xyz/0/?scale=1&suffix=%%%20(0%20of%201)&width=140)
100100
1. explain-stmt

‎tests/bart-riers-sqlite-dataset/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The test dataset is taken from the [Bart Kiers' SQLite ANTLR parser](https://github.com/bkiers/sqlite-parser/tree/master).
44

5-
In the current implementation, there is 74.94% of the tests that are passing.
5+
In the current implementation, there is 64.05% of the tests that are passing.
66
By passing tests, I mean that the parser successfully parses the SQL query and returns a valid `Expression` AST.
77
The structure of the parsed AST is not checked, as there are no expected ASTs list
88

‎tests/codeschool-sqlite-parser-test-files/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
The queries under `sql/` folder are taken from the [Codeschool SQLite Parser](https://github.com/codeschool/sqlite-parser/tree/master) repository.
44

55

6-
Current test pass rate is 42.41%
6+
Current test pass rate is 90.37%

0 commit comments

Comments
 (0)