singlestore-sql-validator 0.0.1__tar.gz → 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {singlestore_sql_validator-0.0.1 → singlestore_sql_validator-0.0.3}/PKG-INFO +4 -4
- {singlestore_sql_validator-0.0.1 → singlestore_sql_validator-0.0.3}/README.md +3 -3
- {singlestore_sql_validator-0.0.1 → singlestore_sql_validator-0.0.3}/pyproject.toml +1 -1
- {singlestore_sql_validator-0.0.1 → singlestore_sql_validator-0.0.3}/LICENSE +0 -0
- {singlestore_sql_validator-0.0.1 → singlestore_sql_validator-0.0.3}/sql_validator/__init__.py +0 -0
- {singlestore_sql_validator-0.0.1 → singlestore_sql_validator-0.0.3}/sql_validator/connection.py +0 -0
- {singlestore_sql_validator-0.0.1 → singlestore_sql_validator-0.0.3}/sql_validator/result.py +0 -0
- {singlestore_sql_validator-0.0.1 → singlestore_sql_validator-0.0.3}/sql_validator/validator.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: singlestore-sql-validator
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: SQL grammar validator for SingleStore queries
|
|
5
5
|
License: Apache License (2.0)
|
|
6
6
|
License-File: LICENSE
|
|
@@ -19,10 +19,10 @@ Project-URL: Homepage, https://github.com/singlestore-labs/sql-validator-python
|
|
|
19
19
|
Project-URL: Issues, https://github.com/singlestore-labs/sql-validator-python/issues
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
|
|
22
|
-
# sql-validator
|
|
22
|
+
# singlestore-sql-validator
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
`sql-validator
|
|
25
|
+
`singlestore-sql-validator` is a Python library for validating SQL queries using the SingleStore Language Server (version 0.1.3 and later). It provides a convenient interface to check SQL syntax and semantics by communicating with a SingleStore language server instance over TCP or WebSocket (with optional TLS support).
|
|
26
26
|
|
|
27
27
|
## Features
|
|
28
28
|
|
|
@@ -37,7 +37,7 @@ Description-Content-Type: text/markdown
|
|
|
37
37
|
Install via pip (after cloning or packaging):
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
pip install sql-validator
|
|
40
|
+
pip install singlestore-sql-validator
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
Or add to your `pyproject.toml` as a dependency.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# sql-validator
|
|
1
|
+
# singlestore-sql-validator
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
`sql-validator
|
|
4
|
+
`singlestore-sql-validator` is a Python library for validating SQL queries using the SingleStore Language Server (version 0.1.3 and later). It provides a convenient interface to check SQL syntax and semantics by communicating with a SingleStore language server instance over TCP or WebSocket (with optional TLS support).
|
|
5
5
|
|
|
6
6
|
## Features
|
|
7
7
|
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
Install via pip (after cloning or packaging):
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
pip install sql-validator
|
|
19
|
+
pip install singlestore-sql-validator
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
Or add to your `pyproject.toml` as a dependency.
|
|
File without changes
|
{singlestore_sql_validator-0.0.1 → singlestore_sql_validator-0.0.3}/sql_validator/__init__.py
RENAMED
|
File without changes
|
{singlestore_sql_validator-0.0.1 → singlestore_sql_validator-0.0.3}/sql_validator/connection.py
RENAMED
|
File without changes
|
|
File without changes
|
{singlestore_sql_validator-0.0.1 → singlestore_sql_validator-0.0.3}/sql_validator/validator.py
RENAMED
|
File without changes
|