ormlambda 3.35.0__tar.gz → 3.35.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ormlambda-3.35.0 → ormlambda-3.35.2}/PKG-INFO +1 -1
- {ormlambda-3.35.0 → ormlambda-3.35.2}/pyproject.toml +1 -1
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/iterable.py +4 -3
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/sqltypes.py +3 -3
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/table/table.py +6 -1
- {ormlambda-3.35.0 → ormlambda-3.35.2}/AUTHORS +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/LICENSE +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/README.md +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/caster/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/caster/base_caster.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/caster/caster.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/caster/interfaces/ICaster.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/caster/interfaces/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/abstract_classes/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/abstract_classes/clause_info_converter.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/abstract_classes/decomposition_query.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/abstract_classes/non_query_base.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/abstract_classes/query_base.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/enums/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/enums/condition_types.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/enums/join_type.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/errors/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/global_checker.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/interfaces/ICustomAlias.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/interfaces/IDecompositionQuery.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/interfaces/IJoinSelector.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/interfaces/INonQueryCommand.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/interfaces/IQueryCommand.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/interfaces/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/caster.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/boolean.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/bytes.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/date.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/datetime.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/decimal.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/float.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/int.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/json.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/none.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/point.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/string.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/ST_AsText.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/ST_Contains.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/count.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/delete.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/drop_table.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/group_by.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/having.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/insert.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/joins.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/limit.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/offset.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/order.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/update.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/upsert.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/clauses/where.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/pool_types.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/repository.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/default/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/default/base.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/interface/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/interface/dialect.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/mysql/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/mysql/base.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/mysql/mysqlconnector.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/mysql/types.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/sqlite/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/sqlite/base.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/dialects/sqlite/pysqlite.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/engine/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/engine/base.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/engine/create.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/engine/url.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/engine/utils.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/env.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/errors.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/model/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/model/base_model.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/repository/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/repository/base_repository.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/repository/interfaces/IDatabaseConnection.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/repository/interfaces/IRepositoryBase.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/repository/interfaces/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/repository/response.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clause_info/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clause_info/aggregate_function_base.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clause_info/clause_info.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clause_info/clause_info_context.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clause_info/interface/IAggregate.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clause_info/interface/IClauseInfo.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clause_info/interface/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/alias.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/count.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/delete.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/group_by.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/having.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/insert.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/interfaces/IDelete.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/interfaces/IInsert.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/interfaces/ISelect.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/interfaces/IUpdate.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/interfaces/IUpsert.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/interfaces/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/join/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/join/join_context.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/joins.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/limit.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/new_join.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/offset.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/order.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/select.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/update.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/upsert.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clauses/where.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/column/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/column/column.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/comparer.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/compiler.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/ddl.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/elements.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/foreign_key.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/functions/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/functions/concat.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/functions/max.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/functions/min.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/functions/sum.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/interfaces/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/table/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/table/fields.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/table/table_constructor.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/type_api.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/types.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/visitors.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/statements/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/statements/base_statement.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/statements/interfaces/IStatements.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/statements/interfaces/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/statements/query_builder.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/statements/statements.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/statements/types.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/types/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/types/metadata.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/util/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/util/load_module.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/util/module_tree/__init__.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/util/module_tree/dfs_traversal.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/util/module_tree/dynamic_module.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/util/plugin_loader.py +0 -0
- {ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/util/typing.py +0 -0
@@ -3,7 +3,7 @@ line-length = 320
|
|
3
3
|
|
4
4
|
[tool.poetry]
|
5
5
|
name = "ormlambda"
|
6
|
-
version = "3.35.
|
6
|
+
version = "3.35.2"
|
7
7
|
description = "ORM designed to interact with the database (currently with MySQL) using lambda functions and nested functions"
|
8
8
|
authors = ["p-hzamora <p.hzamora@icloud.com>"]
|
9
9
|
readme = "README.md"
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/iterable.py
RENAMED
@@ -1,8 +1,9 @@
|
|
1
1
|
from typing import Optional
|
2
2
|
from ormlambda.caster import BaseCaster, Caster
|
3
|
+
from .json import JsonCaster
|
3
4
|
|
4
5
|
|
5
|
-
class IterableCaster[TType](
|
6
|
+
class IterableCaster[TType](JsonCaster[TType]):
|
6
7
|
def __init__(self, value: bytes, type_value: TType):
|
7
8
|
super().__init__(value, type_value)
|
8
9
|
|
@@ -18,12 +19,12 @@ class IterableCaster[TType](BaseCaster[bytes, TType]):
|
|
18
19
|
@property
|
19
20
|
@BaseCaster.return_value_if_exists
|
20
21
|
def to_database(self) -> Optional[bytes]:
|
21
|
-
return
|
22
|
+
return super().to_database
|
22
23
|
|
23
24
|
@property
|
24
25
|
@BaseCaster.return_value_if_exists
|
25
26
|
def from_database(self) -> Optional[bytes]:
|
26
|
-
return
|
27
|
+
return super().from_database
|
27
28
|
|
28
29
|
@property
|
29
30
|
@BaseCaster.return_value_if_exists
|
@@ -449,14 +449,14 @@ class Point(TypeEngine[_python_Point]):
|
|
449
449
|
return _python_Point
|
450
450
|
|
451
451
|
|
452
|
-
class JSON(TypeEngine[
|
452
|
+
class JSON[T](TypeEngine[dict | list | T]):
|
453
453
|
"""JSON data type."""
|
454
454
|
|
455
455
|
__visit_name__ = "JSON"
|
456
456
|
|
457
457
|
@property
|
458
|
-
def python_type(self) -> Type[dict]:
|
459
|
-
return dict
|
458
|
+
def python_type(self) -> T | Type[dict | list]:
|
459
|
+
return dict | list
|
460
460
|
|
461
461
|
|
462
462
|
type UuidType = str | _python_UUID
|
@@ -95,7 +95,12 @@ class Table(metaclass=TableMeta):
|
|
95
95
|
def to_dict(self) -> dict[str, str | int]:
|
96
96
|
dicc: dict[str, Any] = {}
|
97
97
|
for x in self.__annotations__:
|
98
|
-
|
98
|
+
value = getattr(self, x)
|
99
|
+
if isinstance(value, dict):
|
100
|
+
value = tuple(sorted(value.items()))
|
101
|
+
if isinstance(value, list | set):
|
102
|
+
value = tuple(value)
|
103
|
+
dicc[x] = value
|
99
104
|
return dicc
|
100
105
|
|
101
106
|
@classmethod
|
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
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/abstract_classes/clause_info_converter.py
RENAMED
File without changes
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/abstract_classes/decomposition_query.py
RENAMED
File without changes
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/abstract_classes/non_query_base.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
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/common/interfaces/IDecompositionQuery.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
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/__init__.py
RENAMED
File without changes
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/boolean.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/datetime.py
RENAMED
File without changes
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/databases/my_sql/caster/types/decimal.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
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/repository/interfaces/IDatabaseConnection.py
RENAMED
File without changes
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/repository/interfaces/IRepositoryBase.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clause_info/aggregate_function_base.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{ormlambda-3.35.0 → ormlambda-3.35.2}/src/ormlambda/sql/clause_info/interface/IClauseInfo.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
|