piccolo 1.13.0__tar.gz → 1.14.0__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.
- {piccolo-1.13.0 → piccolo-1.14.0}/PKG-INFO +1 -1
- piccolo-1.14.0/piccolo/__init__.py +1 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/base.py +3 -3
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/engine/base.py +7 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/engine/postgres.py +7 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/base.py +5 -14
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/select.py +8 -2
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/querystring.py +1 -1
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/pydantic.py +1 -1
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo.egg-info/PKG-INFO +1 -1
- piccolo-1.13.0/piccolo/__init__.py +0 -1
- {piccolo-1.13.0 → piccolo-1.14.0}/LICENSE +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/README.md +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/app/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/app/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/app/commands/new.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/app/commands/show_all.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/app/commands/templates/piccolo_app.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/app/commands/templates/tables.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/app/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/new.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/README.md.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_blacksheep_app.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_esmerald_app.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_fastapi_app.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_lilya_app.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_litestar_app.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_starlette_app.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/app.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/conftest.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/__init__.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/_blacksheep_endpoints.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/_esmerald_endpoints.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/_lilya_endpoints.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/_litestar_endpoints.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/_starlette_endpoints.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/endpoints.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/piccolo_app.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/piccolo_migrations/README.md +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/tables.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/templates/base.html.jinja_raw +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/templates/home.html.jinja_raw +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/main.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/piccolo_conf.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/piccolo_conf_test.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/requirements.txt.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/static/favicon.ico +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/static/main.css +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/fixtures/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/fixtures/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/fixtures/commands/dump.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/fixtures/commands/load.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/fixtures/commands/shared.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/fixtures/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/meta/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/meta/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/meta/commands/version.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/meta/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/auto/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/auto/diffable_table.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/auto/migration_manager.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/auto/operations.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/auto/schema_differ.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/auto/schema_snapshot.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/auto/serialisation.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/auto/serialisation_legacy.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/commands/backwards.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/commands/base.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/commands/check.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/commands/clean.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/commands/forwards.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/commands/new.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/commands/templates/migration.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/tables.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/playground/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/playground/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/playground/commands/run.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/playground/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/project/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/project/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/project/commands/new.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/project/commands/templates/piccolo_conf.py.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/project/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/schema/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/schema/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/schema/commands/exceptions.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/schema/commands/generate.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/schema/commands/graph.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/schema/commands/templates/graphviz.dot.jinja +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/schema/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/shell/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/shell/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/shell/commands/run.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/shell/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/sql_shell/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/sql_shell/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/sql_shell/commands/run.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/sql_shell/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/tester/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/tester/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/tester/commands/run.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/tester/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/commands/change_password.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/commands/change_permissions.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/commands/create.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/commands/list.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/piccolo_migrations/2019-11-14T21-52-21.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/piccolo_migrations/2020-06-11T21-38-55.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/piccolo_migrations/2021-04-30T16-14-15.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/piccolo_migrations/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/tables.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/choices.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/column_types.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/combination.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/defaults/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/defaults/base.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/defaults/date.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/defaults/interval.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/defaults/time.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/defaults/timestamp.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/defaults/timestamptz.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/defaults/uuid.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/indexes.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/m2m.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/operators/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/operators/base.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/operators/comparison.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/operators/math.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/operators/string.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/readable.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/columns/reference.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/conf/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/conf/apps.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/custom_types.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/engine/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/engine/cockroach.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/engine/exceptions.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/engine/finder.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/engine/sqlite.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/main.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/py.typed +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/functions/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/functions/aggregate.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/functions/base.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/functions/datetime.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/functions/math.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/functions/string.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/functions/type_conversion.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/alter.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/count.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/create.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/create_index.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/delete.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/drop_index.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/exists.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/indexes.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/insert.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/objects.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/raw.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/refresh.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/table_exists.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/methods/update.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/mixins.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/query/proxy.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/schema.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/table.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/table_reflection.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/testing/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/testing/model_builder.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/testing/random_builder.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/dictionary.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/encoding.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/graphlib/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/graphlib/_graphlib.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/lazy_loader.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/list.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/naming.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/objects.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/printing.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/repr.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/sql_values.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/sync.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo/utils/warnings.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo.egg-info/SOURCES.txt +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo.egg-info/dependency_links.txt +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo.egg-info/entry_points.txt +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo.egg-info/requires.txt +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/piccolo.egg-info/top_level.txt +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/profiling/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/profiling/run_profile.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/pyproject.toml +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/setup.cfg +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/setup.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/app/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/app/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/app/commands/test_new.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/app/commands/test_show_all.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/asgi/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/asgi/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/asgi/commands/test_new.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/fixtures/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/fixtures/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/fixtures/commands/test_dump_load.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/fixtures/commands/test_shared.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/meta/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/meta/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/meta/commands/test_version.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/auto/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/auto/integration/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/auto/integration/test_migrations.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/auto/test_diffable_table.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/auto/test_migration_manager.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/auto/test_schema_differ.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/auto/test_schema_snapshot.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/auto/test_serialisation.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/commands/test_base.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/commands/test_check.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/commands/test_clean.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/commands/test_forwards_backwards.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/commands/test_migrations/2020-03-31T20-38-22.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/commands/test_migrations/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/commands/test_new.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/migrations/test_migration.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/project/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/project/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/project/commands/test_new.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/schema/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/shell/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/shell/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/shell/commands/test_run.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/sql_shell/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/sql_shell/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/sql_shell/commands/test_run.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/tester/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/user/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/user/commands/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/user/commands/test_change_password.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/user/commands/test_change_permissions.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/user/commands/test_create.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/user/commands/test_list.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/apps/user/test_tables.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/m2m/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/m2m/base.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/m2m/test_m2m.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/m2m/test_m2m_schema.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_array.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_base.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_bigint.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_boolean.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_bytea.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_choices.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_combination.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_date.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_db_column_name.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_defaults.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_double_precision.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_get_sql_value.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_interval.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_json.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_jsonb.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_numeric.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_primary_key.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_readable.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_real.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_reference.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_reserved_column_names.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_smallint.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_time.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_timestamp.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_timestamptz.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_uuid.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/columns/test_varchar.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/conf/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/conf/example.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/conf/test_apps.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/engine/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/engine/test_extra_nodes.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/engine/test_logging.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/engine/test_nested_transaction.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/engine/test_pool.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/engine/test_transaction.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/engine/test_version_parsing.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/example_apps/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/example_apps/mega/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/example_apps/mega/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/example_apps/mega/piccolo_migrations/2021-09-20T21-23-25-698988.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/example_apps/mega/piccolo_migrations/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/example_apps/mega/tables.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/example_apps/music/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/example_apps/music/piccolo_app.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/example_apps/music/tables.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/example_apps/music/tables_detailed.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/functions/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/functions/base.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/functions/test_datetime.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/functions/test_functions.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/functions/test_math.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/functions/test_string.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/functions/test_type_conversion.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/mixins/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/mixins/test_columns_delegate.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/mixins/test_order_by_delegate.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/test_await.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/test_camelcase.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/test_freeze.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/test_gather.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/test_querystring.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/query/test_slots.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/instance/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/instance/test_create.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/instance/test_get_related.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/instance/test_get_related_readable.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/instance/test_instantiate.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/instance/test_remove.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/instance/test_save.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/instance/test_to_dict.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_all_columns.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_alter.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_batch.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_callback.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_constructor.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_count.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_create.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_create_db_tables.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_create_table_class.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_delete.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_drop_db_tables.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_exists.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_from_dict.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_indexes.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_inheritance.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_insert.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_join.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_join_on.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_metaclass.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_objects.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_output.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_raw.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_ref.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_refresh.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_repr.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_select.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_str.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_table_exists.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/table/test_update.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/test_main.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/test_schema.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/testing/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/testing/test_model_builder.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/testing/test_random_builder.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/__init__.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/test_dictionary.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/test_encoding.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/test_lazy_loader.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/test_list.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/test_naming.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/test_printing.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/test_pydantic.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/test_sql_values.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/test_sync.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/test_table_reflection.py +0 -0
- {piccolo-1.13.0 → piccolo-1.14.0}/tests/utils/test_warnings.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__VERSION__ = "1.14.0"
|
@@ -250,11 +250,11 @@ class ColumnMeta:
|
|
250
250
|
|
251
251
|
if self.call_chain:
|
252
252
|
column_name = (
|
253
|
-
"
|
253
|
+
".".join(
|
254
254
|
t.cast(str, i._meta.db_column_name)
|
255
255
|
for i in self.call_chain
|
256
256
|
)
|
257
|
-
+ f"
|
257
|
+
+ f".{column_name}"
|
258
258
|
)
|
259
259
|
|
260
260
|
return column_name
|
@@ -291,7 +291,7 @@ class ColumnMeta:
|
|
291
291
|
'band$manager.name'
|
292
292
|
|
293
293
|
>>> Band.manager.name._meta.get_full_name(with_alias=True)
|
294
|
-
'band$manager.name AS "manager
|
294
|
+
'band$manager.name AS "manager.name"'
|
295
295
|
|
296
296
|
:param include_quotes:
|
297
297
|
If you're using the name in a SQL query, each component needs to be
|
@@ -132,6 +132,13 @@ class Engine(t.Generic[TransactionClass], metaclass=ABCMeta):
|
|
132
132
|
):
|
133
133
|
pass
|
134
134
|
|
135
|
+
def transform_response_to_dicts(self, results) -> t.List[t.Dict]:
|
136
|
+
"""
|
137
|
+
If the database adapter returns something other than a list of
|
138
|
+
dictionaries, it should perform the transformation here.
|
139
|
+
"""
|
140
|
+
return results
|
141
|
+
|
135
142
|
@abstractmethod
|
136
143
|
async def run_ddl(self, ddl: str, in_pool: bool = True):
|
137
144
|
pass
|
@@ -579,6 +579,13 @@ class PostgresEngine(Engine[PostgresTransaction]):
|
|
579
579
|
|
580
580
|
return response
|
581
581
|
|
582
|
+
def transform_response_to_dicts(self, results) -> t.List[t.Dict]:
|
583
|
+
"""
|
584
|
+
asyncpg returns a special Record object, so we need to convert it to
|
585
|
+
a dict.
|
586
|
+
"""
|
587
|
+
return [dict(i) for i in results]
|
588
|
+
|
582
589
|
def atomic(self) -> Atomic:
|
583
590
|
return Atomic(engine=self)
|
584
591
|
|
@@ -45,20 +45,11 @@ class Query(t.Generic[TableInstance, QueryResponseType]):
|
|
45
45
|
raise ValueError("Engine isn't defined.")
|
46
46
|
|
47
47
|
async def _process_results(self, results) -> QueryResponseType:
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
# directly into zip without calling `values` on it. This can
|
54
|
-
# save us hundreds of microseconds, depending on the number of
|
55
|
-
# results.
|
56
|
-
raw = [dict(zip(keys, i)) for i in results]
|
57
|
-
else:
|
58
|
-
# SQLite returns a list of dictionaries.
|
59
|
-
raw = [dict(zip(keys, i.values())) for i in results]
|
60
|
-
else:
|
61
|
-
raw = []
|
48
|
+
raw = (
|
49
|
+
self.table._meta.db.transform_response_to_dicts(results)
|
50
|
+
if results
|
51
|
+
else []
|
52
|
+
)
|
62
53
|
|
63
54
|
if hasattr(self, "_raw_response_callback"):
|
64
55
|
self._raw_response_callback(raw)
|
@@ -36,7 +36,13 @@ if t.TYPE_CHECKING: # pragma: no cover
|
|
36
36
|
from piccolo.table import Table # noqa
|
37
37
|
|
38
38
|
# Here to avoid breaking changes - will be removed in the future.
|
39
|
-
from piccolo.query.functions.aggregate import
|
39
|
+
from piccolo.query.functions.aggregate import ( # noqa: F401
|
40
|
+
Avg,
|
41
|
+
Count,
|
42
|
+
Max,
|
43
|
+
Min,
|
44
|
+
Sum,
|
45
|
+
)
|
40
46
|
|
41
47
|
|
42
48
|
class SelectRaw(Selectable):
|
@@ -568,7 +574,7 @@ class Select(Query[TableInstance, t.List[t.Dict[str, t.Any]]]):
|
|
568
574
|
query += "{}"
|
569
575
|
args.append(distinct.querystring)
|
570
576
|
|
571
|
-
columns_str = ", ".join("{}" for
|
577
|
+
columns_str = ", ".join("{}" for _ in select_strings)
|
572
578
|
query += f" {columns_str} FROM {self.table._meta.get_formatted_tablename()}" # noqa: E501
|
573
579
|
args.extend(select_strings)
|
574
580
|
|
@@ -246,7 +246,7 @@ class QueryString(Selectable):
|
|
246
246
|
self, engine_type: str, with_alias: bool = True
|
247
247
|
) -> QueryString:
|
248
248
|
if with_alias and self._alias:
|
249
|
-
return QueryString("{} AS " + self._alias, self)
|
249
|
+
return QueryString("{} AS " + f'"{self._alias}"', self)
|
250
250
|
else:
|
251
251
|
return self
|
252
252
|
|
@@ -206,7 +206,7 @@ def create_pydantic_model(
|
|
206
206
|
###########################################################################
|
207
207
|
|
208
208
|
columns: t.Dict[str, t.Any] = {}
|
209
|
-
validators: t.Dict[str,
|
209
|
+
validators: t.Dict[str, t.Callable] = {}
|
210
210
|
|
211
211
|
piccolo_columns = tuple(
|
212
212
|
table._meta.columns
|
@@ -1 +0,0 @@
|
|
1
|
-
__VERSION__ = "1.13.0"
|
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
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_blacksheep_app.py.jinja
RENAMED
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_esmerald_app.py.jinja
RENAMED
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_fastapi_app.py.jinja
RENAMED
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_lilya_app.py.jinja
RENAMED
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_litestar_app.py.jinja
RENAMED
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/_starlette_app.py.jinja
RENAMED
File without changes
|
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/conftest.py.jinja
RENAMED
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/__init__.py.jinja
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/endpoints.py.jinja
RENAMED
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/piccolo_app.py.jinja
RENAMED
File without changes
|
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/home/tables.py.jinja
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/piccolo_conf.py.jinja
RENAMED
File without changes
|
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/requirements.txt.jinja
RENAMED
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/asgi/commands/templates/app/static/favicon.ico
RENAMED
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
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/migrations/commands/templates/migration.py.jinja
RENAMED
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
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/project/commands/templates/piccolo_conf.py.jinja
RENAMED
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
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/piccolo_migrations/2019-11-14T21-52-21.py
RENAMED
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/piccolo_migrations/2020-06-11T21-38-55.py
RENAMED
File without changes
|
{piccolo-1.13.0 → piccolo-1.14.0}/piccolo/apps/user/piccolo_migrations/2021-04-30T16-14-15.py
RENAMED
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
|