singlestore-sql-validator 0.1.1__tar.gz → 0.1.2__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.1.1 → singlestore_sql_validator-0.1.2}/PKG-INFO +1 -1
- {singlestore_sql_validator-0.1.1 → singlestore_sql_validator-0.1.2}/pyproject.toml +1 -1
- {singlestore_sql_validator-0.1.1 → singlestore_sql_validator-0.1.2}/sql_validator/validator.py +1 -1
- {singlestore_sql_validator-0.1.1 → singlestore_sql_validator-0.1.2}/LICENSE +0 -0
- {singlestore_sql_validator-0.1.1 → singlestore_sql_validator-0.1.2}/README.md +0 -0
- {singlestore_sql_validator-0.1.1 → singlestore_sql_validator-0.1.2}/sql_validator/__init__.py +0 -0
- {singlestore_sql_validator-0.1.1 → singlestore_sql_validator-0.1.2}/sql_validator/connection.py +0 -0
- {singlestore_sql_validator-0.1.1 → singlestore_sql_validator-0.1.2}/sql_validator/result.py +0 -0
{singlestore_sql_validator-0.1.1 → singlestore_sql_validator-0.1.2}/sql_validator/validator.py
RENAMED
|
@@ -292,7 +292,7 @@ class Validator(ABC):
|
|
|
292
292
|
- Returns: The full response string received from the server.
|
|
293
293
|
- Raises: ConnectionError if the socket is closed before the full response is received, or ValueError if the response does not contain a valid Content-Length header.
|
|
294
294
|
"""
|
|
295
|
-
sock.settimeout(
|
|
295
|
+
sock.settimeout(50) # Set a timeout for receiving data
|
|
296
296
|
header = b""
|
|
297
297
|
# Read header (until \r\n\r\n)
|
|
298
298
|
while b"\r\n\r\n" not in header:
|
|
File without changes
|
|
File without changes
|
{singlestore_sql_validator-0.1.1 → singlestore_sql_validator-0.1.2}/sql_validator/__init__.py
RENAMED
|
File without changes
|
{singlestore_sql_validator-0.1.1 → singlestore_sql_validator-0.1.2}/sql_validator/connection.py
RENAMED
|
File without changes
|
|
File without changes
|