sqlspec 0.12.0__tar.gz → 0.12.1__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.
Potentially problematic release.
This version of sqlspec might be problematic. Click here for more details.
- {sqlspec-0.12.0 → sqlspec-0.12.1}/PKG-INFO +1 -1
- {sqlspec-0.12.0 → sqlspec-0.12.1}/pyproject.toml +2 -2
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/psycopg/config.py +38 -54
- {sqlspec-0.12.0 → sqlspec-0.12.1}/uv.lock +46 -59
- {sqlspec-0.12.0 → sqlspec-0.12.1}/.gitignore +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/.pre-commit-config.yaml +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/CONTRIBUTING.rst +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/LICENSE +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/Makefile +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/NOTICE +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/README.md +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/__metadata__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/_serialization.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/_sql.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/_typing.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/adbc/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/adbc/config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/adbc/driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/aiosqlite/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/aiosqlite/config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/aiosqlite/driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/asyncmy/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/asyncmy/config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/asyncmy/driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/asyncpg/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/asyncpg/config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/asyncpg/driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/bigquery/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/bigquery/config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/bigquery/driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/duckdb/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/duckdb/config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/duckdb/driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/oracledb/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/oracledb/config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/oracledb/driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/psqlpy/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/psqlpy/config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/psqlpy/driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/psycopg/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/psycopg/driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/sqlite/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/sqlite/config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/adapters/sqlite/driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/base.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/driver/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/driver/_async.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/driver/_common.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/driver/_sync.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/driver/mixins/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/driver/mixins/_pipeline.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/driver/mixins/_result_utils.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/driver/mixins/_sql_translator.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/driver/mixins/_storage.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/driver/mixins/_type_coercion.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/exceptions.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/extensions/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/extensions/aiosql/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/extensions/aiosql/adapter.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/extensions/litestar/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/extensions/litestar/_utils.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/extensions/litestar/config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/extensions/litestar/handlers.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/extensions/litestar/plugin.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/extensions/litestar/providers.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/loader.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/py.typed +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/service/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/service/base.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/service/pagination.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/_ddl_utils.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/_parsing_utils.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/base.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/ddl.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/delete.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/insert.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/merge.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_aggregate_functions.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_case_builder.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_common_table_expr.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_delete_from.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_from.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_group_by.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_having.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_insert_from_select.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_insert_into.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_insert_values.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_join.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_limit_offset.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_merge_clauses.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_order_by.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_pivot.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_returning.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_select_columns.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_set_ops.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_unpivot.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_update_from.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_update_set.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_update_table.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_where.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/mixins/_window_functions.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/protocols.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/select.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/builder/update.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/filters.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/parameters.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/analyzers/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/analyzers/_analyzer.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/base.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/context.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/result_types.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/transformers/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/transformers/_expression_simplifier.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/transformers/_literal_parameterizer.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/transformers/_remove_comments.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/transformers/_remove_hints.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/validators/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/validators/_dml_safety.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/validators/_parameter_style.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/validators/_performance.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/validators/_security.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/pipelines/validators/base.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/result.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/splitter.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/statement/sql.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/storage/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/storage/backends/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/storage/backends/base.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/storage/backends/fsspec.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/storage/backends/obstore.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/storage/protocol.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/storage/registry.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/typing.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/utils/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/utils/correlation.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/utils/deprecation.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/utils/fixtures.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/utils/logging.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/utils/module_loader.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/utils/serializers.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/utils/singleton.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/utils/sync_tools.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/sqlspec/utils/text.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/conftest.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/ddls-mysql-collection.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/ddls-postgres-collection.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/example_usage.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/init.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/collection-config.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/collection-data_types.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/collection-database_details.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/collection-engines.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/collection-hostname.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/collection-plugins.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/collection-process_list.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/collection-resource-groups.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/collection-schema_objects.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/collection-table_details.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/collection-users.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/mysql/init.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/oracle.ddl.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-applications.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-aws_extension_dependency.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-aws_oracle_exists.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-bg_writer_stats.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-calculated_metrics.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-data_types.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-database_details.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-extensions.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-index_details.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-pglogical-details.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-privileges.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-replication_slots.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-replication_stats.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-schema_details.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-schema_objects.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-settings.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-source_details.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/collection-table_details.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/extended-collection-all-databases.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/postgres/init.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/readiness-check.sql +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/fixtures/sql_utils.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/conftest.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_arrow_functionality.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_bigquery_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_connection.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_data_types.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_duckdb_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_execute_many.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_execute_script.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_parameter_styles.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_postgres_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_returning.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_adbc/test_sqlite_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_aiosqlite/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_aiosqlite/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_asyncmy/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_asyncmy/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_asyncpg/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_asyncpg/conftest.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_asyncpg/test_arrow_functionality.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_asyncpg/test_connection.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_asyncpg/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_asyncpg/test_execute_many.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_asyncpg/test_parameter_styles.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_bigquery/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_bigquery/conftest.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_bigquery/test_arrow_functionality.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_bigquery/test_connection.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_bigquery/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_duckdb/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_duckdb/test_arrow_functionality.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_duckdb/test_connection.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_duckdb/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_duckdb/test_execute_many.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_duckdb/test_parameter_styles.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_oracledb/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_oracledb/test_connection.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_oracledb/test_driver_async.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_oracledb/test_driver_sync.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_psqlpy/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_psqlpy/test_arrow_functionality.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_psqlpy/test_connection.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_psqlpy/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_psycopg/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_psycopg/test_connection.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_psycopg/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_psycopg/test_execute_many.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_psycopg/test_parameter_styles.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_sqlite/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_adapters/test_sqlite/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_dialect_propagation.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_extensions/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_extensions/test_aiosql/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_extensions/test_litestar/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_sql_file_loader.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_storage/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_storage/test_driver_storage_integration.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_storage/test_end_to_end_workflows.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/integration/test_storage/test_storage_mixins.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_adbc/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_adbc/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_adbc/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_aiosqlite/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_aiosqlite/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_aiosqlite/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_asyncmy/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_asyncmy/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_asyncpg/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_asyncpg/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_asyncpg/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_bigquery/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_bigquery/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_bigquery/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_duckdb/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_duckdb/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_duckdb/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_oracledb/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_oracledb/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_oracledb/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_psqlpy/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_psqlpy/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_psqlpy/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_psycopg/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_psycopg/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_psycopg/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_sqlite/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_sqlite/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_adapters/test_sqlite/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_base.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_config_dialect.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_driver.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_exceptions.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_extensions/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_extensions/test_aiosql/test_adapter.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_loader.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_base.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_builder/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_builder/test_base.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_builder/test_builder_mixins.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_builder/test_delete.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_builder/test_insert.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_builder/test_merge.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_builder/test_select.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_builder/test_update.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_config.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_filters.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_mixins.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_oracle_numeric_parameters.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_parameter_normalization.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_parameter_preservation.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_parameters.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_pipelines/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_pipelines/test_analyzer.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_pipelines/test_analyzer_subquery_detection.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_pipelines/test_base.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_pipelines/test_expression_simplifier.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_pipelines/test_transformers_literal_parameterizer.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_pipelines/test_transformers_remove_comments.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_pipelines/test_validators_dml_safety.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_pipelines/test_validators_parameter_style.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_pipelines/test_validators_performance.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_pipelines/test_validators_security.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_result.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_splitter.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_sql.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_sql_translator_mixin.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_sqlfactory.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_storage.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_statement/test_transformers/test_expression_simplifier_parameter_tracking.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_storage/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_storage/test_backends/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_storage/test_backends/test_fsspec_backend.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_storage/test_backends/test_obstore_backend.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_storage/test_base.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_storage/test_registry.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_typing.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_utils/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_utils/test_deprecation.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_utils/test_fixtures.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_utils/test_module_loader.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_utils/test_singleton.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_utils/test_sync_tools.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tests/unit/test_utils/test_text.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tools/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tools/build_docs.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tools/pypi_readme.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tools/sphinx_ext/__init__.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tools/sphinx_ext/changelog.py +0 -0
- {sqlspec-0.12.0 → sqlspec-0.12.1}/tools/sphinx_ext/missing_references.py +0 -0
|
@@ -7,7 +7,7 @@ maintainers = [{ name = "Litestar Developers", email = "hello@litestar.dev" }]
|
|
|
7
7
|
name = "sqlspec"
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
requires-python = ">=3.9, <4.0"
|
|
10
|
-
version = "0.12.
|
|
10
|
+
version = "0.12.1"
|
|
11
11
|
|
|
12
12
|
[project.urls]
|
|
13
13
|
Discord = "https://discord.gg/litestar"
|
|
@@ -126,7 +126,7 @@ packages = ["sqlspec"]
|
|
|
126
126
|
allow_dirty = true
|
|
127
127
|
commit = false
|
|
128
128
|
commit_args = "--no-verify"
|
|
129
|
-
current_version = "0.12.
|
|
129
|
+
current_version = "0.12.1"
|
|
130
130
|
ignore_missing_files = false
|
|
131
131
|
ignore_missing_version = false
|
|
132
132
|
message = "chore(release): bump to v{new_version}"
|
|
@@ -606,57 +606,50 @@ class PsycopgAsyncConfig(AsyncDatabaseConfig[PsycopgAsyncConnection, AsyncConnec
|
|
|
606
606
|
|
|
607
607
|
async def _create_pool(self) -> "AsyncConnectionPool":
|
|
608
608
|
"""Create the actual async connection pool."""
|
|
609
|
-
logger.info("Creating async Psycopg connection pool", extra={"adapter": "psycopg"})
|
|
610
609
|
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
610
|
+
# Get all config (creates a new dict)
|
|
611
|
+
all_config = self.pool_config_dict.copy()
|
|
612
|
+
|
|
613
|
+
# Separate pool-specific parameters that AsyncConnectionPool accepts directly
|
|
614
|
+
pool_params = {
|
|
615
|
+
"min_size": all_config.pop("min_size", 4),
|
|
616
|
+
"max_size": all_config.pop("max_size", None),
|
|
617
|
+
"name": all_config.pop("name", None),
|
|
618
|
+
"timeout": all_config.pop("timeout", 30.0),
|
|
619
|
+
"max_waiting": all_config.pop("max_waiting", 0),
|
|
620
|
+
"max_lifetime": all_config.pop("max_lifetime", 3600.0),
|
|
621
|
+
"max_idle": all_config.pop("max_idle", 600.0),
|
|
622
|
+
"reconnect_timeout": all_config.pop("reconnect_timeout", 300.0),
|
|
623
|
+
"num_workers": all_config.pop("num_workers", 3),
|
|
624
|
+
}
|
|
614
625
|
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
"name": all_config.pop("name", None),
|
|
620
|
-
"timeout": all_config.pop("timeout", 30.0),
|
|
621
|
-
"max_waiting": all_config.pop("max_waiting", 0),
|
|
622
|
-
"max_lifetime": all_config.pop("max_lifetime", 3600.0),
|
|
623
|
-
"max_idle": all_config.pop("max_idle", 600.0),
|
|
624
|
-
"reconnect_timeout": all_config.pop("reconnect_timeout", 300.0),
|
|
625
|
-
"num_workers": all_config.pop("num_workers", 3),
|
|
626
|
-
}
|
|
626
|
+
# Create a configure callback to set row_factory
|
|
627
|
+
async def configure_connection(conn: "PsycopgAsyncConnection") -> None:
|
|
628
|
+
# Set DictRow as the row factory
|
|
629
|
+
conn.row_factory = dict_row
|
|
627
630
|
|
|
628
|
-
|
|
629
|
-
async def configure_connection(conn: "PsycopgAsyncConnection") -> None:
|
|
630
|
-
# Set DictRow as the row factory
|
|
631
|
-
conn.row_factory = dict_row
|
|
631
|
+
pool_params["configure"] = all_config.pop("configure", configure_connection)
|
|
632
632
|
|
|
633
|
-
|
|
633
|
+
# Remove None values from pool_params
|
|
634
|
+
pool_params = {k: v for k, v in pool_params.items() if v is not None}
|
|
634
635
|
|
|
635
|
-
|
|
636
|
-
|
|
636
|
+
# Handle conninfo vs individual connection parameters
|
|
637
|
+
conninfo = all_config.pop("conninfo", None)
|
|
638
|
+
if conninfo:
|
|
639
|
+
# If conninfo is provided, use it directly
|
|
640
|
+
# Don't pass kwargs when using conninfo string
|
|
641
|
+
pool = AsyncConnectionPool(conninfo, open=False, **pool_params)
|
|
642
|
+
else:
|
|
643
|
+
# Otherwise, pass connection parameters via kwargs
|
|
644
|
+
# Remove any non-connection parameters
|
|
645
|
+
# row_factory is already popped out earlier
|
|
646
|
+
all_config.pop("row_factory", None)
|
|
647
|
+
# Remove pool-specific settings that may have been left
|
|
648
|
+
all_config.pop("kwargs", None)
|
|
649
|
+
pool = AsyncConnectionPool("", kwargs=all_config, open=False, **pool_params)
|
|
637
650
|
|
|
638
|
-
|
|
639
|
-
conninfo = all_config.pop("conninfo", None)
|
|
640
|
-
if conninfo:
|
|
641
|
-
# If conninfo is provided, use it directly
|
|
642
|
-
# Don't pass kwargs when using conninfo string
|
|
643
|
-
pool = AsyncConnectionPool(conninfo, **pool_params)
|
|
644
|
-
else:
|
|
645
|
-
# Otherwise, pass connection parameters via kwargs
|
|
646
|
-
# Remove any non-connection parameters
|
|
647
|
-
# row_factory is already popped out earlier
|
|
648
|
-
all_config.pop("row_factory", None)
|
|
649
|
-
# Remove pool-specific settings that may have been left
|
|
650
|
-
all_config.pop("kwargs", None)
|
|
651
|
-
pool = AsyncConnectionPool("", kwargs=all_config, **pool_params)
|
|
651
|
+
await pool.open()
|
|
652
652
|
|
|
653
|
-
await pool.open()
|
|
654
|
-
logger.info("Async Psycopg connection pool created successfully", extra={"adapter": "psycopg"})
|
|
655
|
-
except Exception as e:
|
|
656
|
-
logger.exception(
|
|
657
|
-
"Failed to create async Psycopg connection pool", extra={"adapter": "psycopg", "error": str(e)}
|
|
658
|
-
)
|
|
659
|
-
raise
|
|
660
653
|
return pool
|
|
661
654
|
|
|
662
655
|
async def _close_pool(self) -> None:
|
|
@@ -664,16 +657,7 @@ class PsycopgAsyncConfig(AsyncDatabaseConfig[PsycopgAsyncConnection, AsyncConnec
|
|
|
664
657
|
if not self.pool_instance:
|
|
665
658
|
return
|
|
666
659
|
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
try:
|
|
670
|
-
await self.pool_instance.close()
|
|
671
|
-
logger.info("Async Psycopg connection pool closed successfully", extra={"adapter": "psycopg"})
|
|
672
|
-
except Exception as e:
|
|
673
|
-
logger.exception(
|
|
674
|
-
"Failed to close async Psycopg connection pool", extra={"adapter": "psycopg", "error": str(e)}
|
|
675
|
-
)
|
|
676
|
-
raise
|
|
660
|
+
await self.pool_instance.close()
|
|
677
661
|
|
|
678
662
|
async def create_connection(self) -> "PsycopgAsyncConnection": # pyright: ignore
|
|
679
663
|
"""Create a single async connection (not from pool).
|
|
@@ -958,7 +958,7 @@ name = "exceptiongroup"
|
|
|
958
958
|
version = "1.3.0"
|
|
959
959
|
source = { registry = "https://pypi.org/simple" }
|
|
960
960
|
dependencies = [
|
|
961
|
-
{ name = "typing-extensions", marker = "python_full_version < '3.
|
|
961
|
+
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
|
962
962
|
]
|
|
963
963
|
sdist = { url = "https://files.pythonhosted.org/packages/0b/9f/a65090624ecf468cdca03533906e7c69ed7588582240cfe7cc9e770b50eb/exceptiongroup-1.3.0.tar.gz", hash = "sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88", size = 29749, upload-time = "2025-05-10T17:42:51.123Z" }
|
|
964
964
|
wheels = [
|
|
@@ -3132,63 +3132,50 @@ wheels = [
|
|
|
3132
3132
|
|
|
3133
3133
|
[[package]]
|
|
3134
3134
|
name = "pymssql"
|
|
3135
|
-
version = "2.3.
|
|
3136
|
-
source = { registry = "https://pypi.org/simple" }
|
|
3137
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3138
|
-
wheels = [
|
|
3139
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3140
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3141
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3142
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3143
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3144
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3145
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3146
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3147
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3148
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3149
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3150
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3151
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3152
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3153
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3154
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3155
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3156
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3157
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3158
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3159
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3160
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3161
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3162
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3163
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3164
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3165
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3166
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3167
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3168
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3169
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3170
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3171
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3172
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3173
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3174
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3175
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3176
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3177
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3178
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3179
|
-
{ url = "https://files.pythonhosted.org/packages/3f/a9/25ea7056857aabbfd285c397084c571e4486f341ff8e8086b067bc2e2109/pymssql-2.3.4-cp313-cp313-win32.whl", hash = "sha256:e31b507f4669671e8bbdeecf1c1c2ed9c092953a1decfae5af656200a74195d1", size = 1337662, upload-time = "2025-04-02T02:21:12.84Z" },
|
|
3180
|
-
{ url = "https://files.pythonhosted.org/packages/a8/17/66414aeb30a4c2a23d29b2b8715d20d23e57c3ac2dd7bfd6fee5aa093e07/pymssql-2.3.4-cp39-cp39-macosx_13_0_x86_64.whl", hash = "sha256:378cb74a67cb177d6864acd446e17afc7ebbc7b3cde9cfee04d7221ec1bc08ef", size = 2806568, upload-time = "2025-04-02T02:11:25.381Z" },
|
|
3181
|
-
{ url = "https://files.pythonhosted.org/packages/1c/e7/00a27e73300a172618d5b0cd2f910d4ef434d0c221aa2ff0a507a614ce34/pymssql-2.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ad790becb502b1a981fc83d922813303a1eac7867df62bda2ca12f41b73efd2", size = 3925998, upload-time = "2025-04-02T03:08:02.494Z" },
|
|
3182
|
-
{ url = "https://files.pythonhosted.org/packages/c1/fd/22275fbe8c2de5d0112b0809e444be922762a9f12a791ed49a8bec14e59b/pymssql-2.3.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b538838abef0bd45a0cf097dfe661a5b8894804aa0dc2a1da9adacf6e5013b8d", size = 3930500, upload-time = "2025-04-02T02:13:19.525Z" },
|
|
3183
|
-
{ url = "https://files.pythonhosted.org/packages/dc/c4/42f22e0d343bf96d84fbab902e2821fdaa7318c54fd6add31be34e6c952d/pymssql-2.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e43e8276d7b2977672e4ecff5837d674ace36b646d19c943ce0383f95a48ffe3", size = 4277364, upload-time = "2025-04-02T02:12:47.993Z" },
|
|
3184
|
-
{ url = "https://files.pythonhosted.org/packages/e9/90/61b1286b749b6e9fb96a5219e8e9642d3e8300f2e94d66602fa99ecf98bd/pymssql-2.3.4-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:6dbc315df97bc98a0af2447f44d52e51fd6af892f985db09abc49f24ddb19f3b", size = 4713395, upload-time = "2025-04-02T02:13:08.514Z" },
|
|
3185
|
-
{ url = "https://files.pythonhosted.org/packages/3c/fb/fab148cc6ccbebe56a20413927796f536ed13b71e77cdb0d9d53458d31d8/pymssql-2.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3d6dd05274ebaee7dda6d86fe4773c5cc91962e6c163c443cb4746c8c678037f", size = 2802822, upload-time = "2025-04-02T02:08:50.571Z" },
|
|
3186
|
-
{ url = "https://files.pythonhosted.org/packages/b2/24/9c54e1c58522973bff59caaaae92ffbbe4e6d8a5d782aa02030940a009f0/pymssql-2.3.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2091f8afb1bff4f398cbd4bb28690e9e63c88f793cd13760a8a7f366525dca0f", size = 2902371, upload-time = "2025-04-02T02:08:41.497Z" },
|
|
3187
|
-
{ url = "https://files.pythonhosted.org/packages/b9/69/515b29102d9969b4d25d3127e4b8a1df5a1185be3ed4f83a21291560b368/pymssql-2.3.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2afa69efcf26b8dd960931d4092ad0f0bf2cc92e4bc71ffc10c83ffaebba234d", size = 4014679, upload-time = "2025-04-02T02:15:17.185Z" },
|
|
3188
|
-
{ url = "https://files.pythonhosted.org/packages/28/e1/a309673a01c946b1506843b68e7231aa8369cfac1ee89db9004848d56e34/pymssql-2.3.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f59e2c17a19c042782daf41f770f8e63f30dab238b8d77aa51060a735bdb9ac4", size = 4036000, upload-time = "2025-04-02T02:13:46.075Z" },
|
|
3189
|
-
{ url = "https://files.pythonhosted.org/packages/83/26/ceab1deed7fce9c335ab4bf41401b5bff50dc47fd02a6c78e8b815616233/pymssql-2.3.4-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ecc8d8a35dd319e33f4ead45e9843ccaf2353c4c2d82bd17016d4d8f2ee41a79", size = 4562300, upload-time = "2025-04-02T02:15:08.608Z" },
|
|
3190
|
-
{ url = "https://files.pythonhosted.org/packages/cc/66/0bf929d6adbd053b43f82c1d0002908123e3614cf782e02353acd18272fd/pymssql-2.3.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:dd3c22370652f643d370ab14d6d5b5bde85fb4b43bca1eca6f1105e4218be245", size = 4774300, upload-time = "2025-04-02T02:13:58.892Z" },
|
|
3191
|
-
{ url = "https://files.pythonhosted.org/packages/b1/7b/520fc74b072a09af20faa5fb2de988cae5be150611a15f51a96d4c8adbc2/pymssql-2.3.4-cp39-cp39-win_amd64.whl", hash = "sha256:48ea563fd02f25439fe054979ebdb469fbcc15dffdc2c67388b24dca195da313", size = 2037450, upload-time = "2025-04-02T02:20:37.693Z" },
|
|
3135
|
+
version = "2.3.5"
|
|
3136
|
+
source = { registry = "https://pypi.org/simple" }
|
|
3137
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ff/a9/22670028017e0f36b650cb242656e85a240ee66c44af0e52c04ec3e05340/pymssql-2.3.5.tar.gz", hash = "sha256:28a0a3a2c63eca08c98bd267e3c6175e2d57408eb34ffb3cfd570d6e2276a418", size = 185056, upload-time = "2025-06-25T02:48:10.012Z" }
|
|
3138
|
+
wheels = [
|
|
3139
|
+
{ url = "https://files.pythonhosted.org/packages/54/83/a954517173f32761e532491fb298a3b84f8fcb714074ac31352634db7aee/pymssql-2.3.5-cp310-cp310-macosx_13_0_x86_64.whl", hash = "sha256:02323a7df874430e973f2d97ce4b11940509eb8b14999a2d80a5aec1bcb778a9", size = 2917486, upload-time = "2025-06-25T02:47:16.555Z" },
|
|
3140
|
+
{ url = "https://files.pythonhosted.org/packages/31/60/cc2a9e428155cb203b1ea920904897d4bf6116567fe99e73ab8af0cdc324/pymssql-2.3.5-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:1719e3f1f86625412116f1ab3898469c828ae50458eaf240548b64a2df80406b", size = 3132600, upload-time = "2025-06-25T02:47:18.413Z" },
|
|
3141
|
+
{ url = "https://files.pythonhosted.org/packages/4f/7b/c35fc2d8f54007ae240bb32199ffa9a38e7578dafb69dec1fad4dcfb0768/pymssql-2.3.5-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e00411174741fa98aca6fb3a454ccac66191e2071ee03f3d745d15b7cefa8981", size = 3047997, upload-time = "2025-06-25T02:47:20.047Z" },
|
|
3142
|
+
{ url = "https://files.pythonhosted.org/packages/a5/0f/5f42d3bfc153cad35c7b879f3b9d8c3ee0d969d34c9c943af095ea397171/pymssql-2.3.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3332efd37dab7816ef2a377d42197410b92edce74f789fd65f9447a37d99d8bf", size = 3182001, upload-time = "2025-06-25T02:47:21.253Z" },
|
|
3143
|
+
{ url = "https://files.pythonhosted.org/packages/1a/db/f6535b34796d59c36b3e6d25b4fa25360ede1271d02ea7bd47d841e2d540/pymssql-2.3.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:285b4c1d85fac04db146fc60ca4d25c1125c022bbaf85999fc67a047e6dedc2e", size = 3691310, upload-time = "2025-06-25T02:47:22.702Z" },
|
|
3144
|
+
{ url = "https://files.pythonhosted.org/packages/15/f1/8e6d5988cf191a0ab06c0b82b1bee28b15351c0454025314747978e31f7a/pymssql-2.3.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c7645787f573e3b53615ff44c740c100eee5e485132f292db0fc36095735fd1d", size = 3437459, upload-time = "2025-06-25T02:47:24.209Z" },
|
|
3145
|
+
{ url = "https://files.pythonhosted.org/packages/7a/ae/6a6e702c8b3c4d6acdc1f7ed5d3377f359f536a81ab0c4452b0f799a6324/pymssql-2.3.5-cp310-cp310-win32.whl", hash = "sha256:a489f868175bdde98781dc6989b2aea1fa1bc7250d09464022cc05d9cf5be511", size = 1323163, upload-time = "2025-06-25T02:47:25.311Z" },
|
|
3146
|
+
{ url = "https://files.pythonhosted.org/packages/bd/32/211adfda46fde32648d12fc4cf14d1cf69e2b345abec20db65885923b12a/pymssql-2.3.5-cp310-cp310-win_amd64.whl", hash = "sha256:f0c83627206670a7dff90400a32c1c10ed598eabe34ebebe23cf8a415e51c9e0", size = 2005220, upload-time = "2025-06-25T02:47:26.312Z" },
|
|
3147
|
+
{ url = "https://files.pythonhosted.org/packages/da/45/bb5da49afa3b96cbb6440ac08388b242d3287026da0eff2cd3245f3dd4a6/pymssql-2.3.5-cp311-cp311-macosx_13_0_x86_64.whl", hash = "sha256:93a99739fa0be46aa2339430856687ea8c8dcb237101d25099da5ee150b1eb65", size = 2921158, upload-time = "2025-06-25T02:47:27.817Z" },
|
|
3148
|
+
{ url = "https://files.pythonhosted.org/packages/ee/51/0f850c5ed45b6981dd70fec959d7b900f3628b6e150f34bc2eb478676898/pymssql-2.3.5-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:a78476270c2998a3eab769185c7bd1a5b79fed18d12ffd208f3c7dc67ef0481f", size = 3135657, upload-time = "2025-06-25T02:47:28.884Z" },
|
|
3149
|
+
{ url = "https://files.pythonhosted.org/packages/9e/7e/7f91468787f80e84aeee5d63895c006d88119a2e8fb64cec0e914783af6d/pymssql-2.3.5-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:07d6aa9f247339fa6a53ca3380023fb6e72c0f9d13753ccdd0360528c9b5b422", size = 3040577, upload-time = "2025-06-25T02:47:30.14Z" },
|
|
3150
|
+
{ url = "https://files.pythonhosted.org/packages/35/64/48a960b3b2bb9f19e16f530673992c62f509b0ace5fdb183d3cc70979b6d/pymssql-2.3.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cdcf472e9b5d7c683c58ab8e294f1d71020ab3be5fa6d634977688f10ccf54be", size = 3170201, upload-time = "2025-06-25T02:47:31.284Z" },
|
|
3151
|
+
{ url = "https://files.pythonhosted.org/packages/1b/04/3e7a00c5a4f03935e1370b7e3242e817100945801c69ce0b3937ed2a4fcb/pymssql-2.3.5-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ed0c663957cabe9c2f80617abb5840b463c656af97647abdcc6be6890742bd47", size = 3683143, upload-time = "2025-06-25T02:47:32.817Z" },
|
|
3152
|
+
{ url = "https://files.pythonhosted.org/packages/39/2b/f54978c7adafa490c264d85e61d3b9ade026c9244cea299d735baa8b0ffd/pymssql-2.3.5-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:66c7472ffc97f2dd303381e17a9fe7f34244f90aeadfbbfb63b9a04c013e9f5f", size = 3424753, upload-time = "2025-06-25T02:47:33.994Z" },
|
|
3153
|
+
{ url = "https://files.pythonhosted.org/packages/59/1e/73f8990158cb51ae40dcc84a2b029846b11a9c023ed7e5d5c39392fc3a83/pymssql-2.3.5-cp311-cp311-win32.whl", hash = "sha256:ef5f6f87aeb09f066d23c46bb3d6400918620090a4ef7499d94400f6223ab114", size = 1322197, upload-time = "2025-06-25T02:47:35.403Z" },
|
|
3154
|
+
{ url = "https://files.pythonhosted.org/packages/fc/c6/1a095802192b920ecf78bc9dd881a0459ed7ba5358d907261d67a132a349/pymssql-2.3.5-cp311-cp311-win_amd64.whl", hash = "sha256:f7a96b5c05529cbabe6a2fc4dacc1745cc4ed0598a76fa30cf759a08439d2ad2", size = 2006086, upload-time = "2025-06-25T02:47:36.871Z" },
|
|
3155
|
+
{ url = "https://files.pythonhosted.org/packages/69/4b/fe74b27662f4e6a048727afb75ed479270041df6b7f619abb2e4fcf007d8/pymssql-2.3.5-cp312-cp312-macosx_13_0_x86_64.whl", hash = "sha256:3dc01ed69c8d379656359abcaf2e704a896f7862933381f52373d432a2e93f81", size = 2904310, upload-time = "2025-06-25T02:47:37.911Z" },
|
|
3156
|
+
{ url = "https://files.pythonhosted.org/packages/49/43/f599782b9a0dd45e6b6167652288f207c1a44f033af38f0de99a62eebae8/pymssql-2.3.5-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:3d62dc38ed9c08f326ddf64d1d540075560e27ea2e174635c39ea8453611f6f5", size = 3122194, upload-time = "2025-06-25T02:47:39.378Z" },
|
|
3157
|
+
{ url = "https://files.pythonhosted.org/packages/d2/a1/7b2e4c8d06f31181e215cfb196e52dd651d5708ae0df04d93ef55d9a74df/pymssql-2.3.5-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9b9191f609c3d21025a11d3e5ac2cbd3536794e63ec276fc474b96c1cf400f9a", size = 3072126, upload-time = "2025-06-25T02:47:40.599Z" },
|
|
3158
|
+
{ url = "https://files.pythonhosted.org/packages/c0/56/c3761e27747d3f2b818d0190abdd0a859f69567b9f9131159a9591e5e8f9/pymssql-2.3.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:37222c3e9897059613c6dff97c6bebb31a152e27fc74376850192d03f183bc59", size = 3201363, upload-time = "2025-06-25T02:47:42.101Z" },
|
|
3159
|
+
{ url = "https://files.pythonhosted.org/packages/1e/37/bbfebcf6bc214b9eab39dee953dca80fcf46db6c5d43d948f909370c7b84/pymssql-2.3.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:356b8d207ac3d37c67ae905aa2c16ba36ab5295804cefeee61ed3d4962fc3dac", size = 3715648, upload-time = "2025-06-25T02:47:43.569Z" },
|
|
3160
|
+
{ url = "https://files.pythonhosted.org/packages/f9/54/a1fb28fc4c6b917dee9f137f7d7f85099d24bc405b2f8c676a4545236c7d/pymssql-2.3.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1056c8240c35a92ec17d103714e0601bc353fe974f456cb0e3618509098bb0de", size = 3459523, upload-time = "2025-06-25T02:47:44.719Z" },
|
|
3161
|
+
{ url = "https://files.pythonhosted.org/packages/07/6d/0b0db9a678c32c39c04cb4dc60f1ab0c8d0ca5a3733ca2c64a8b3f72e328/pymssql-2.3.5-cp312-cp312-win32.whl", hash = "sha256:98165c9cc30516ba6dfda5fc9ec660f6fe0e169f34dd17473d0589546329bd18", size = 1307215, upload-time = "2025-06-25T02:47:45.847Z" },
|
|
3162
|
+
{ url = "https://files.pythonhosted.org/packages/7a/0c/143f962dd435496cb1dac50ff81016ee0e50c52516f60ae47cf0a17b0c9f/pymssql-2.3.5-cp312-cp312-win_amd64.whl", hash = "sha256:ea27526bfd99e1055efcd87f5b663683782bad91c64d29a8bb75e622e1ba7e5b", size = 1990457, upload-time = "2025-06-25T02:47:47.079Z" },
|
|
3163
|
+
{ url = "https://files.pythonhosted.org/packages/c8/13/f93f152216702fc748f42e83f31e9f4a8e9f336e72d3a0c046eadbf66a50/pymssql-2.3.5-cp313-cp313-macosx_13_0_x86_64.whl", hash = "sha256:c8770303f2bc7cca1a43138bb0ad4c1d2084e70dd5d8b90bb1f3608a242aa0b3", size = 2900839, upload-time = "2025-06-25T02:47:48.329Z" },
|
|
3164
|
+
{ url = "https://files.pythonhosted.org/packages/7f/e1/1b5bf9098d4c927d595f65fb41fa401e227722c6204d220761fb533bea28/pymssql-2.3.5-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:7185b65aa35c78a878a3a00cd22e9c93299420ac60807bdfc8287699e8a5307f", size = 3119180, upload-time = "2025-06-25T02:47:49.81Z" },
|
|
3165
|
+
{ url = "https://files.pythonhosted.org/packages/cf/2f/82c8e408ebe47bc6b109b81a809e83b4aa03e69184363678299ea781e6d1/pymssql-2.3.5-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ed604b2418811f53fa2a31716acba648ae9cb27af2d3c88881b099337c55885c", size = 3071662, upload-time = "2025-06-25T02:47:51.416Z" },
|
|
3166
|
+
{ url = "https://files.pythonhosted.org/packages/89/a2/cf16f44c3dc3a9a08f6715138357f43d939fa0100028a3088a21430ee8b6/pymssql-2.3.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8d7fcc6842dd369fce75c008ecb72d2fd24a56052cba040a85441b183af07fc", size = 3200769, upload-time = "2025-06-25T02:47:52.959Z" },
|
|
3167
|
+
{ url = "https://files.pythonhosted.org/packages/23/27/be8186085aea17426d4fa1ccee9172e15212b2fb3c50ae836857f5f30638/pymssql-2.3.5-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d46bcd734703049099f18d1ad81b6015473e94070326ddae1ee2e2f6ba68c1c5", size = 3715288, upload-time = "2025-06-25T02:47:54.471Z" },
|
|
3168
|
+
{ url = "https://files.pythonhosted.org/packages/4a/07/653f21bc6116c6495f08acf4791de3c0bde3fc18749b86e956ea795f5b17/pymssql-2.3.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ee99d8ef8d56d91d8d74018fa998b92da0d2b439bc8be0b95654ddeb1d1e0d54", size = 3459046, upload-time = "2025-06-25T02:47:56.082Z" },
|
|
3169
|
+
{ url = "https://files.pythonhosted.org/packages/a8/a3/ad3518428d1352421827b2dbd5d4c3522131f8b1df3ce264527b5f2059f7/pymssql-2.3.5-cp313-cp313-win32.whl", hash = "sha256:c645b627be49d2238abf5e3d8220961a4623ed96eef0e7c816a82a85d37813ce", size = 1306795, upload-time = "2025-06-25T02:47:57.617Z" },
|
|
3170
|
+
{ url = "https://files.pythonhosted.org/packages/41/52/e877ccf33abe97cfbf20750d60412b5b91de19ed4109e0e231b893dafd49/pymssql-2.3.5-cp313-cp313-win_amd64.whl", hash = "sha256:91d50abada95d4ed007810d482524fde54474510f8d47fcdf32779bd7675abe1", size = 1990849, upload-time = "2025-06-25T02:47:58.885Z" },
|
|
3171
|
+
{ url = "https://files.pythonhosted.org/packages/57/07/2a60861ba0905c0d5af53a5d22a41650226d6b23838a2ca586d6aad9675a/pymssql-2.3.5-cp39-cp39-macosx_13_0_x86_64.whl", hash = "sha256:4cd0fc7ae09432ee6c7abc8b20a8621610fc088661d2cf0b900f481b3fc370dc", size = 2918441, upload-time = "2025-06-25T02:47:59.972Z" },
|
|
3172
|
+
{ url = "https://files.pythonhosted.org/packages/d8/f8/b6ecf0b5b125295f717f1dcc04c76178ae97a3db38cf136f1f0cf0290876/pymssql-2.3.5-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:c7bd95b0f18f96c3e5881907768006cf4dcae2d2059b107dbdf739c5aa416a2f", size = 3133450, upload-time = "2025-06-25T02:48:01.058Z" },
|
|
3173
|
+
{ url = "https://files.pythonhosted.org/packages/f9/4e/8984eab905d568310fc16396ede1c9777e04d2040ddd9ad78e39cfc204e9/pymssql-2.3.5-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3065a8f8f080129ab8b0ab76b66e0a8a8bc798a607c6589e58e484c469878fc5", size = 3049602, upload-time = "2025-06-25T02:48:02.321Z" },
|
|
3174
|
+
{ url = "https://files.pythonhosted.org/packages/46/9a/9fc0900cb1880b1324dcac65f4d077b5dd6a8ccc39179a40f8da1797eb4b/pymssql-2.3.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6df8d3983acb606a7d97cbe5f1915fd738c888263d307ec78e63c2d84feef64e", size = 3182988, upload-time = "2025-06-25T02:48:03.49Z" },
|
|
3175
|
+
{ url = "https://files.pythonhosted.org/packages/f2/51/75110cd292819e12351613247001dac5534d92b02c7d96cc5689bc386ae2/pymssql-2.3.5-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:eeb895fe7525fe2a3813ea67f525a0a4d001764d95ba1e6022e858265683dbec", size = 3692077, upload-time = "2025-06-25T02:48:04.58Z" },
|
|
3176
|
+
{ url = "https://files.pythonhosted.org/packages/21/d2/c2cbedee8e4f1f6de35eaf1a04e616b5d2351fb401045e40d5eb937d7cde/pymssql-2.3.5-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:fbc6eea638c0369c9f22dc6885980a8c2c5bf582eebc9f2bd0299cd8edbac459", size = 3438502, upload-time = "2025-06-25T02:48:05.8Z" },
|
|
3177
|
+
{ url = "https://files.pythonhosted.org/packages/06/6c/3ce67529ae990a54bf060c8c61802a58062782e84a393dddd7a3ff74cdd1/pymssql-2.3.5-cp39-cp39-win32.whl", hash = "sha256:991d865d3d885fe51c27c9e30a02a96ea08c094d5cb77c05f5784c7188c9e56e", size = 1324047, upload-time = "2025-06-25T02:48:07.378Z" },
|
|
3178
|
+
{ url = "https://files.pythonhosted.org/packages/27/f3/c105249a4e0f295cd68ec9f073bf60ddf92cc2be66291315e46b2b2fc43a/pymssql-2.3.5-cp39-cp39-win_amd64.whl", hash = "sha256:f9c48ddc58ecb139ab2271344e5c16bfd79526a3324eb3b2b2de7cf6a2f4364a", size = 2005579, upload-time = "2025-06-25T02:48:08.409Z" },
|
|
3192
3179
|
]
|
|
3193
3180
|
|
|
3194
3181
|
[[package]]
|
|
@@ -4226,7 +4213,7 @@ wheels = [
|
|
|
4226
4213
|
|
|
4227
4214
|
[[package]]
|
|
4228
4215
|
name = "sqlspec"
|
|
4229
|
-
version = "0.12.
|
|
4216
|
+
version = "0.12.1"
|
|
4230
4217
|
source = { editable = "." }
|
|
4231
4218
|
dependencies = [
|
|
4232
4219
|
{ name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|