ormlambda 3.34.8__py3-none-any.whl → 3.34.9__py3-none-any.whl
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/sql/column/column.py +3 -3
- {ormlambda-3.34.8.dist-info → ormlambda-3.34.9.dist-info}/METADATA +1 -1
- {ormlambda-3.34.8.dist-info → ormlambda-3.34.9.dist-info}/RECORD +6 -6
- {ormlambda-3.34.8.dist-info → ormlambda-3.34.9.dist-info}/AUTHORS +0 -0
- {ormlambda-3.34.8.dist-info → ormlambda-3.34.9.dist-info}/LICENSE +0 -0
- {ormlambda-3.34.8.dist-info → ormlambda-3.34.9.dist-info}/WHEEL +0 -0
ormlambda/sql/column/column.py
CHANGED
@@ -95,7 +95,7 @@ class Column[TProp]:
|
|
95
95
|
self.is_not_null: bool = is_not_null
|
96
96
|
|
97
97
|
def __repr__(self) -> str:
|
98
|
-
return f"{type(self).__name__}[{self.dtype.
|
98
|
+
return f"{type(self).__name__}[{self.dtype.__name__}] => {self.column_name}"
|
99
99
|
|
100
100
|
def __str__(self) -> str:
|
101
101
|
return self.table.__table_name__ + "." + self.column_name
|
@@ -233,5 +233,5 @@ class Column[TProp]:
|
|
233
233
|
return Like(self, pattern)
|
234
234
|
|
235
235
|
@property
|
236
|
-
def __name__(self)->str:
|
237
|
-
return self.column_name
|
236
|
+
def __name__(self) -> str:
|
237
|
+
return self.column_name
|
@@ -115,7 +115,7 @@ ormlambda/sql/clauses/update.py,sha256=s4Vl_CmZzUYvdP2ThrTDz2ps_nU3_uwROQNICD06q
|
|
115
115
|
ormlambda/sql/clauses/upsert.py,sha256=1MlHSzIVXSnCnXx_0HqX_-JT1FAxaIKHImrv-OKjnWU,2250
|
116
116
|
ormlambda/sql/clauses/where.py,sha256=Db1IpXnbqAwzZpaThFDSxkrCNLsop__aJ43cDtcZ2Sk,2129
|
117
117
|
ormlambda/sql/column/__init__.py,sha256=MwBJznOoeNE7tK9oppVtC3784XPkKo0yq9VLlh2lWUY,41
|
118
|
-
ormlambda/sql/column/column.py,sha256=
|
118
|
+
ormlambda/sql/column/column.py,sha256=ad4TOqxYJ3UJJ_Dhz_AxDvF5H_M__dS8X5eyI4VGQTU,8034
|
119
119
|
ormlambda/sql/comparer.py,sha256=_KQ6gYe0eUg5aOL1i70mV8a1Qa1jI5UQr-0VfAMgVzk,5482
|
120
120
|
ormlambda/sql/compiler.py,sha256=dSmF8RYQECPweKZI_TB9stDkLXTJy9FYvAQMNSCY8AY,12967
|
121
121
|
ormlambda/sql/ddl.py,sha256=WhVoG_zlTT9DVZlnokHB8B1SC4ZXQSrXTQJ6vlnlpEY,1644
|
@@ -151,8 +151,8 @@ ormlambda/util/module_tree/dfs_traversal.py,sha256=lSF03G63XtJFLp03ueAmsHMBvhUkj
|
|
151
151
|
ormlambda/util/module_tree/dynamic_module.py,sha256=vJOqvm5-WKksudXBK1IcTn4WsuLxt1qXNISq-_21sy4,8705
|
152
152
|
ormlambda/util/plugin_loader.py,sha256=p6WLn-MF1bQd2i2GHy98WQjNKmbQdqIUyTFIcBIHC5M,1034
|
153
153
|
ormlambda/util/typing.py,sha256=Z7irz53ui0hoFnJTe06NX4JPl60_thgdjJIxh5gjGGk,169
|
154
|
-
ormlambda-3.34.
|
155
|
-
ormlambda-3.34.
|
156
|
-
ormlambda-3.34.
|
157
|
-
ormlambda-3.34.
|
158
|
-
ormlambda-3.34.
|
154
|
+
ormlambda-3.34.9.dist-info/AUTHORS,sha256=uWpOHaCPTOLbVkk5x9McoLwbgzSeCg7yILeDRyMGWGM,606
|
155
|
+
ormlambda-3.34.9.dist-info/LICENSE,sha256=xBprFw8GJLdHMOoUqDk0427EvjIcbEREvXXVFULuuXU,1080
|
156
|
+
ormlambda-3.34.9.dist-info/METADATA,sha256=egppzgWn4Zv9t5Mj9pvRMrkSf4W2SGTQ-Lyhfftgb6M,13326
|
157
|
+
ormlambda-3.34.9.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
158
|
+
ormlambda-3.34.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|