Skip to content

Commit aa101bf

Browse files
committed
docs: update README.md
1 parent a5757a3 commit aa101bf

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README-zh_CN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ dt-sql-parser 是一个基于 [ANTLR4](https://github.com/antlr/antlr4) 开发
2121

2222
**SQL 辅助方法支持**
2323

24-
| SQL 类型 | SQL 切割 | 自动补全 |
24+
| SQL 类型 | SQL 切割 | 自动补全 |
2525
| ----------- | -------- | -------- |
2626
| Generic SQL | WIP | WIP |
2727
| Flink SQL |||
2828
| Spark SQL |||
2929
| Hive SQL |||
30-
| PL/SQL | WIP | WIP |
31-
| Postgre SQL | WIP | WIP |
30+
| PL/SQL | WIP | WIP |
31+
| PostgreSQL | | |
3232
| Trino SQL |||
3333

3434
> 提示:当前的 Parser 是 `Javascript` 语言版本,如果有必要,可以尝试编译 Grammar 文件到其他目标语言

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Additionally, it provides auxiliary functions such as **SQL splitting** and **co
3535
| Flink SQL |||
3636
| Spark SQL |||
3737
| Hive SQL |||
38-
| PL/SQL | WIP | WIP |
39-
| Postgre SQL | WIP | WIP |
38+
| PL/SQL | WIP | WIP |
39+
| PostgreSQL | | |
4040
| Trino SQL |||
4141

4242
>Tips: This project is the default for Javascript language, also you can try to compile it to other languages if you need.
@@ -68,13 +68,13 @@ We recommend learning the Fundamentals usage before continuing. The dt-sql-parse
6868
import { GenericSQL, FlinkSQL, SparkSQL, HiveSQL, PLSQL, PostgresSQL, TrinoSQL } from 'dt-sql-parser';
6969
```
7070

71-
Before employing syntax validation, code completion, and other features, it is necessary to instantiate the Parser of the relevant SQL type.
71+
Before using syntax validation, code completion, and other features, it is necessary to instantiate the Parser of the relevant SQL type.
7272
For instance, one can consider using `GenericSQL` as an example:
7373
```javascript
7474
const parser = new GenericSQL();
7575
```
7676

77-
The following usage examples will utilize the `GenericSQL`, and the Parser for other SQL types will be employed in a similar manner as `GenericSQL`.
77+
The following usage examples will utilize the `GenericSQL`, and the Parser for other SQL types will be used in a similar manner as `GenericSQL`.
7878

7979
### Syntax Validation
8080
```javascript

0 commit comments

Comments
 (0)