agentic-kit-common 0.0.13__py3-none-any.whl → 0.0.14__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.
- agentic_kit_common/orm/execution.py +1 -1
- {agentic_kit_common-0.0.13.dist-info → agentic_kit_common-0.0.14.dist-info}/METADATA +1 -1
- {agentic_kit_common-0.0.13.dist-info → agentic_kit_common-0.0.14.dist-info}/RECORD +5 -5
- {agentic_kit_common-0.0.13.dist-info → agentic_kit_common-0.0.14.dist-info}/WHEEL +0 -0
- {agentic_kit_common-0.0.13.dist-info → agentic_kit_common-0.0.14.dist-info}/top_level.txt +0 -0
|
@@ -59,7 +59,7 @@ def is_readonly_expression(node: expressions.Expression, allowed_operations: Opt
|
|
|
59
59
|
if allowed_operations:
|
|
60
60
|
op_type = get_operation_type(node)
|
|
61
61
|
# 检查操作类型
|
|
62
|
-
if op_type not in allowed_operations:
|
|
62
|
+
if op_type.lower() not in allowed_operations and op_type.upper() not in allowed_operations:
|
|
63
63
|
return False, op_type
|
|
64
64
|
|
|
65
65
|
if enable_wildcard_check and isinstance(node, expressions.Select) and node.find(expressions.Star):
|
|
@@ -8,7 +8,7 @@ agentic_kit_common/minio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
8
8
|
agentic_kit_common/minio/minio_manager.py,sha256=PzoUWn0YqXTHx1UClbkwLkIUmv5O4aSDc7eVf08qOzs,21494
|
|
9
9
|
agentic_kit_common/orm/__init__.py,sha256=wqY81g3P7FftFvLK5SaxFJzNNxrQwtmcb4RCXOSAZa8,71
|
|
10
10
|
agentic_kit_common/orm/base.py,sha256=QIura_i2nIY2XeA3-KkO2loLNbEAoJK2qx0hu_8nhYU,2277
|
|
11
|
-
agentic_kit_common/orm/execution.py,sha256=
|
|
11
|
+
agentic_kit_common/orm/execution.py,sha256=_mo4YNqF_0u6OJvYD-Cf58So1ELE6M3ftiquzWR182I,2912
|
|
12
12
|
agentic_kit_common/orm/manager.py,sha256=lWgFk5fUu_9m6yN_fskWHSYGaW30ty--KZKj8AuvIh0,4852
|
|
13
13
|
agentic_kit_common/orm/multi_session.py,sha256=xESwEeQw1UdR-5jqywbmI_Z0jxUn_l-cMyagnm7fc3c,9023
|
|
14
14
|
agentic_kit_common/orm/schema.py,sha256=RfVoJ7RD9ZckogLfLWh9P9x3JkZRURnsIw50scBp75Y,1162
|
|
@@ -31,7 +31,7 @@ test/test_embedding.py,sha256=xcfHDHGL2_tpXp_VaLnNDAWvKdkc1K1BjiYoV5WxtFY,900
|
|
|
31
31
|
test/test_minio.py,sha256=TOkX8A2pPkjrwAIH88xBZmFpDc1ZgTk1QS6mtubOZ-Y,2308
|
|
32
32
|
test/test_orm.py,sha256=8fGCU7BWaD5sDbg0fgYN0Saf_hi7t-q8svHCHLQDceo,1620
|
|
33
33
|
test/test_vector.py,sha256=Z3Bwvrw0XGBWXHYXk9pkF1cjnUZSZk0gmLsgQIIaZuY,1717
|
|
34
|
-
agentic_kit_common-0.0.
|
|
35
|
-
agentic_kit_common-0.0.
|
|
36
|
-
agentic_kit_common-0.0.
|
|
37
|
-
agentic_kit_common-0.0.
|
|
34
|
+
agentic_kit_common-0.0.14.dist-info/METADATA,sha256=U5PoTp-28I3ck5YxPy7DK7wE-_2D1Qu6EJJ8JYID0jA,7552
|
|
35
|
+
agentic_kit_common-0.0.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
36
|
+
agentic_kit_common-0.0.14.dist-info/top_level.txt,sha256=nEKDlp84vqKSVWssGcxyuIsTqWLhMo45xqMs2GK4Dgg,24
|
|
37
|
+
agentic_kit_common-0.0.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|