MindsDB 25.9.3rc1__py3-none-any.whl → 25.10.0__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.
Potentially problematic release.
This version of MindsDB might be problematic. Click here for more details.
- mindsdb/__about__.py +1 -1
- mindsdb/__main__.py +1 -9
- mindsdb/api/a2a/__init__.py +1 -1
- mindsdb/api/a2a/agent.py +9 -1
- mindsdb/api/a2a/common/server/server.py +4 -0
- mindsdb/api/a2a/common/server/task_manager.py +8 -1
- mindsdb/api/a2a/common/types.py +66 -0
- mindsdb/api/a2a/task_manager.py +50 -0
- mindsdb/api/common/middleware.py +1 -1
- mindsdb/api/executor/command_executor.py +49 -36
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +7 -13
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py +2 -2
- mindsdb/api/executor/datahub/datanodes/system_tables.py +2 -1
- mindsdb/api/executor/planner/query_prepare.py +2 -20
- mindsdb/api/executor/utilities/sql.py +5 -4
- mindsdb/api/http/initialize.py +76 -60
- mindsdb/api/http/namespaces/agents.py +0 -3
- mindsdb/api/http/namespaces/chatbots.py +0 -5
- mindsdb/api/http/namespaces/file.py +2 -0
- mindsdb/api/http/namespaces/handlers.py +10 -5
- mindsdb/api/http/namespaces/knowledge_bases.py +20 -0
- mindsdb/api/http/namespaces/sql.py +2 -2
- mindsdb/api/http/start.py +2 -2
- mindsdb/api/mysql/mysql_proxy/utilities/dump.py +8 -2
- mindsdb/integrations/handlers/byom_handler/byom_handler.py +2 -10
- mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +98 -46
- mindsdb/integrations/handlers/druid_handler/druid_handler.py +32 -40
- mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +5 -2
- mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +438 -100
- mindsdb/integrations/handlers/mssql_handler/requirements_odbc.txt +3 -0
- mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +235 -3
- mindsdb/integrations/handlers/oracle_handler/__init__.py +2 -0
- mindsdb/integrations/handlers/oracle_handler/connection_args.py +7 -1
- mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +321 -16
- mindsdb/integrations/handlers/oracle_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +2 -2
- mindsdb/integrations/handlers/shopify_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +57 -3
- mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py +144 -111
- mindsdb/integrations/libs/response.py +2 -2
- mindsdb/integrations/utilities/handlers/auth_utilities/snowflake/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/snowflake/snowflake_jwt_gen.py +151 -0
- mindsdb/integrations/utilities/rag/rerankers/base_reranker.py +24 -21
- mindsdb/interfaces/agents/agents_controller.py +0 -2
- mindsdb/interfaces/data_catalog/data_catalog_loader.py +6 -7
- mindsdb/interfaces/data_catalog/data_catalog_reader.py +15 -4
- mindsdb/interfaces/database/data_handlers_cache.py +190 -0
- mindsdb/interfaces/database/database.py +3 -3
- mindsdb/interfaces/database/integrations.py +1 -121
- mindsdb/interfaces/database/projects.py +2 -6
- mindsdb/interfaces/database/views.py +1 -4
- mindsdb/interfaces/jobs/jobs_controller.py +0 -4
- mindsdb/interfaces/jobs/scheduler.py +0 -1
- mindsdb/interfaces/knowledge_base/controller.py +197 -108
- mindsdb/interfaces/knowledge_base/evaluate.py +36 -41
- mindsdb/interfaces/knowledge_base/executor.py +11 -0
- mindsdb/interfaces/knowledge_base/llm_client.py +51 -17
- mindsdb/interfaces/model/model_controller.py +4 -4
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +4 -10
- mindsdb/interfaces/skills/skills_controller.py +1 -4
- mindsdb/interfaces/storage/db.py +16 -6
- mindsdb/interfaces/triggers/triggers_controller.py +1 -3
- mindsdb/utilities/config.py +19 -2
- mindsdb/utilities/exception.py +2 -2
- mindsdb/utilities/json_encoder.py +24 -10
- mindsdb/utilities/render/sqlalchemy_render.py +15 -14
- mindsdb/utilities/starters.py +0 -10
- {mindsdb-25.9.3rc1.dist-info → mindsdb-25.10.0.dist-info}/METADATA +278 -264
- {mindsdb-25.9.3rc1.dist-info → mindsdb-25.10.0.dist-info}/RECORD +72 -86
- mindsdb/api/postgres/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/executor/__init__.py +0 -1
- mindsdb/api/postgres/postgres_proxy/executor/executor.py +0 -182
- mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +0 -322
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +0 -34
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +0 -31
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +0 -1265
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +0 -31
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +0 -265
- mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +0 -477
- mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +0 -10
- mindsdb/api/postgres/start.py +0 -11
- mindsdb/integrations/handlers/mssql_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +0 -169
- mindsdb/integrations/handlers/oracle_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +0 -32
- {mindsdb-25.9.3rc1.dist-info → mindsdb-25.10.0.dist-info}/WHEEL +0 -0
- {mindsdb-25.9.3rc1.dist-info → mindsdb-25.10.0.dist-info}/licenses/LICENSE +0 -0
- {mindsdb-25.9.3rc1.dist-info → mindsdb-25.10.0.dist-info}/top_level.txt +0 -0
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
mindsdb/__about__.py,sha256=
|
|
1
|
+
mindsdb/__about__.py,sha256=gcB0iDD9SFIP_OCaxFuPmplg86gB9ZI5w58gWpRyqsE,455
|
|
2
2
|
mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
|
|
3
|
-
mindsdb/__main__.py,sha256=
|
|
3
|
+
mindsdb/__main__.py,sha256=SrPyU-1TFWSCaIGTqbyWuhZpqc0tXanp6IKLcmwmUCQ,22092
|
|
4
4
|
mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
mindsdb/api/a2a/__init__.py,sha256=
|
|
6
|
-
mindsdb/api/a2a/agent.py,sha256=
|
|
5
|
+
mindsdb/api/a2a/__init__.py,sha256=WwAqjMC8q7Njsh54MYw8VmEhic3gdg_4sIVOTBoroFA,1709
|
|
6
|
+
mindsdb/api/a2a/agent.py,sha256=UCreyKuOh12G_YfRWH9S_9JeGn3pieOU1lpqKMHa_MY,6866
|
|
7
7
|
mindsdb/api/a2a/constants.py,sha256=1BmvDneWzNG6YJFUc-gZ9CNCO4wq2_12vFe6aw23yX4,2292
|
|
8
|
-
mindsdb/api/a2a/task_manager.py,sha256=
|
|
8
|
+
mindsdb/api/a2a/task_manager.py,sha256=KPufcR1LYMWGKMtRTUNAs7HeYBrr535Q4H8tSGS2qx4,22486
|
|
9
9
|
mindsdb/api/a2a/utils.py,sha256=UesCEra9n7rVsksayeknmhiynmHlb8zg4BddFQYo6m8,3199
|
|
10
10
|
mindsdb/api/a2a/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mindsdb/api/a2a/common/types.py,sha256=
|
|
11
|
+
mindsdb/api/a2a/common/types.py,sha256=cgUxeqAA4QoGd8VAly4ygRn1K4gh2z75aDwXHQUoKyY,11331
|
|
12
12
|
mindsdb/api/a2a/common/server/__init__.py,sha256=Bl7Qa3Pk4QWY4yDPRNyHeTzNJpAe9HgUJd8-oTnMPv8,152
|
|
13
|
-
mindsdb/api/a2a/common/server/server.py,sha256=
|
|
14
|
-
mindsdb/api/a2a/common/server/task_manager.py,sha256=
|
|
13
|
+
mindsdb/api/a2a/common/server/server.py,sha256=shOWvDbxyyItvWgxDa5FjgBs7DXGmQqGp2P_KX3KWdU,7114
|
|
14
|
+
mindsdb/api/a2a/common/server/task_manager.py,sha256=GWFZb6gm-ERK-9lbqSO35kVDxlPuRjRXVtLp4nDAKo4,10286
|
|
15
15
|
mindsdb/api/a2a/common/server/utils.py,sha256=1k_fBfECT0JQFlFcAJhpNlTYYOruxDlV0S2OTmUOZ4M,854
|
|
16
16
|
mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
mindsdb/api/common/middleware.py,sha256=
|
|
17
|
+
mindsdb/api/common/middleware.py,sha256=Wj_fpq9xsYzF5gOHxbmoF0Ala-AShFNUyYVXCU_-OUY,3497
|
|
18
18
|
mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
19
|
-
mindsdb/api/executor/command_executor.py,sha256=
|
|
19
|
+
mindsdb/api/executor/command_executor.py,sha256=dskI-RcEd1ac0FtIYvVgo-iQEI6iB0VLCR2hQQnG3mA,85577
|
|
20
20
|
mindsdb/api/executor/exceptions.py,sha256=31ueAs7RAUUnl-uaqmHCaMtY2BWxgMuXVhRjOnaR0T0,1352
|
|
21
21
|
mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
|
|
22
22
|
mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
|
|
@@ -29,18 +29,18 @@ mindsdb/api/executor/datahub/classes/response.py,sha256=1JLErGOSwcgYeSlCOBaEDjkX
|
|
|
29
29
|
mindsdb/api/executor/datahub/classes/tables_row.py,sha256=7sRAqTbL-YcIfIvbdyEokSefHoWVzNSRM1vjqhqkWGQ,1495
|
|
30
30
|
mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
|
|
31
31
|
mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=bONVqvyx4BXzMfwx1VGVTcB8YNn-2CtCYPfOiLFn_l4,575
|
|
32
|
-
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=
|
|
33
|
-
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=
|
|
32
|
+
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=FNPBfDGmQ42f1gLQC0-scJu5y0LLkmF2nr8dthxPyuo,8549
|
|
33
|
+
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=X3NpLmVcNe3Aa7XUiHuouyX9MRlEkGeM_A75g2K3i_w,13056
|
|
34
34
|
mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=oyn8cCwEYcxRwza4xRwyNTUE2QoJjAUxvO6Rz_V70xc,14502
|
|
35
35
|
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=hAiBkUNN4flZwXazlsmY4wJAEKwobARCXPKSBdw7ecs,8354
|
|
36
|
-
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=
|
|
36
|
+
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=E-sTVan7-6uIQNQ393tbJAxplX1dieCBI88tCt9ln-0,27545
|
|
37
37
|
mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
|
|
38
38
|
mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
|
|
39
39
|
mindsdb/api/executor/planner/plan_join.py,sha256=V_ehRYSDj5Xv4_IKNir87uD1QyCufE40c9au_AEZGbE,23095
|
|
40
40
|
mindsdb/api/executor/planner/plan_join_ts.py,sha256=7o0ecqiKFOHsoiS_NlbrJ1iyWdn5iGyXrvjRFY2qqnY,15780
|
|
41
41
|
mindsdb/api/executor/planner/query_plan.py,sha256=Cj02laM8YCuwuNUNrkLrhbBcO1cOAXcq5IHTx-_R5L0,780
|
|
42
42
|
mindsdb/api/executor/planner/query_planner.py,sha256=NvCEMd8AJe0NI8buKT_PSKJfIiVCm4geItHFNcpspR8,35643
|
|
43
|
-
mindsdb/api/executor/planner/query_prepare.py,sha256=
|
|
43
|
+
mindsdb/api/executor/planner/query_prepare.py,sha256=bsUcPycxymQLlJODqX71T8Bjtu1rZfxsABZ1PgaKCEc,15835
|
|
44
44
|
mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
|
|
45
45
|
mindsdb/api/executor/planner/steps.py,sha256=eAffDFqL0ZpCn1PSFK5gnpsY6eb-gM--lZw2WyadGfo,9511
|
|
46
46
|
mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIgQBxZUvZ7Sic,3871
|
|
@@ -67,28 +67,28 @@ mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0Hn3eXNWLu5mlTNpIsZbS
|
|
|
67
67
|
mindsdb/api/executor/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
68
|
mindsdb/api/executor/utilities/functions.py,sha256=FilHuYMTVMqmB3rQPcVgDga8qFvIdxlwyXjge_5iJjc,1003
|
|
69
69
|
mindsdb/api/executor/utilities/mysql_to_duckdb_functions.py,sha256=CxeS5NbDKCv6nyRioZIWSmGMgl5e5MSF8MSeWfcRYIo,21966
|
|
70
|
-
mindsdb/api/executor/utilities/sql.py,sha256=
|
|
70
|
+
mindsdb/api/executor/utilities/sql.py,sha256=MD-mAF-moZ_JOl6aloIXcqDMjEpk-hsNuT9QwuYmgfc,10326
|
|
71
71
|
mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
72
|
mindsdb/api/http/gui.py,sha256=zbgKwLfX-tHiD5U2SIhIHZ9Wuvgfk0__7Gv-t-DYzT0,3073
|
|
73
|
-
mindsdb/api/http/initialize.py,sha256=
|
|
74
|
-
mindsdb/api/http/start.py,sha256=
|
|
73
|
+
mindsdb/api/http/initialize.py,sha256=iXpIuxojLxhzqSc5M_Czw-ZkJMKLiUlEmubR7S-7wN8,16741
|
|
74
|
+
mindsdb/api/http/start.py,sha256=lgG2DWjVStnHZOp-hcG2Uqk4qTn9UQh_vfkYKdV7u3U,1743
|
|
75
75
|
mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
|
|
76
76
|
mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
mindsdb/api/http/namespaces/agents.py,sha256=
|
|
77
|
+
mindsdb/api/http/namespaces/agents.py,sha256=FpXWAUTqnfpbYIKPxkCHu0haQC4oUnAZmnIDCsL0C38,17598
|
|
78
78
|
mindsdb/api/http/namespaces/analysis.py,sha256=OH-VjUQ0lYE0f0uc-gZGljMwpolXEKP9D8ZxmnA5a2c,4236
|
|
79
79
|
mindsdb/api/http/namespaces/auth.py,sha256=rAgoV0Ejw9m8hPt5vNi2LqvWB0UsbFwkJn0oC3sYADc,5326
|
|
80
|
-
mindsdb/api/http/namespaces/chatbots.py,sha256=
|
|
80
|
+
mindsdb/api/http/namespaces/chatbots.py,sha256=RR4mzHfyOLS0clC-pAvjwxA1g5V1eWSrFXiSbzE_Wm0,11234
|
|
81
81
|
mindsdb/api/http/namespaces/config.py,sha256=BbEshgHbcY9XLyNsOWDEeKWlJ01zHoxv23xrA2MT2zI,9239
|
|
82
82
|
mindsdb/api/http/namespaces/databases.py,sha256=twg1epjUnDWMFO-kvaypJ2JEb_Xom-5Wy98JII2Vbvs,17685
|
|
83
83
|
mindsdb/api/http/namespaces/default.py,sha256=N-ADA862kjdZkj6SIm2CiCuTQwRTp3q90hT6ymxKFGM,4444
|
|
84
|
-
mindsdb/api/http/namespaces/file.py,sha256=
|
|
85
|
-
mindsdb/api/http/namespaces/handlers.py,sha256=
|
|
84
|
+
mindsdb/api/http/namespaces/file.py,sha256=b-jM4H10Zg8zPDAWjwh4Owz71onEwVUhagptOHOpmVQ,8728
|
|
85
|
+
mindsdb/api/http/namespaces/handlers.py,sha256=u_nn5Ux7HpJKgmSQoxCp1beUph8GZjS3alv0R1PTMlQ,8250
|
|
86
86
|
mindsdb/api/http/namespaces/jobs.py,sha256=4lYmLQolCjDNCV8HMBLyNbdQTkqI_L_N-SuLdKA3Q4A,2818
|
|
87
|
-
mindsdb/api/http/namespaces/knowledge_bases.py,sha256=
|
|
87
|
+
mindsdb/api/http/namespaces/knowledge_bases.py,sha256=F1LhwZJ-_91zGgdWurS_dPHOp9T-si4UGOd6r_z8PPg,17484
|
|
88
88
|
mindsdb/api/http/namespaces/models.py,sha256=X57eZVvBega-M6S-LIUWG5wsyJx6S9W14MZ9U9JHMO0,10882
|
|
89
89
|
mindsdb/api/http/namespaces/projects.py,sha256=hFzaI6QIhrShqdyVp3J0h9xlnAGWvMLP4Wn6CEPP3H8,1245
|
|
90
90
|
mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
|
|
91
|
-
mindsdb/api/http/namespaces/sql.py,sha256=
|
|
91
|
+
mindsdb/api/http/namespaces/sql.py,sha256=B6rY0xk78hXoCXSgVPAQlPBsTxf6nZaixAqbVpweHYU,6141
|
|
92
92
|
mindsdb/api/http/namespaces/tab.py,sha256=9lYOpu3bUsDNG27qio-AKcnq5LIFq2oj-X9WMdQXvJ0,3863
|
|
93
93
|
mindsdb/api/http/namespaces/tree.py,sha256=8UZUZCt4f5EzQYJLRTwraol8RtebYjlyRWeHiOLhPIA,4191
|
|
94
94
|
mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
|
|
@@ -152,22 +152,8 @@ mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzp
|
|
|
152
152
|
mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
153
153
|
mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=yyIDUzzcPU2sTOMCAOUwoRs9ywqak4bLQuCNXelUbqg,42253
|
|
154
154
|
mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
|
-
mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=
|
|
155
|
+
mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=0zo81TP3D5kwgS3SlnaVjabjHYt2ySvd7BHmeOMW5CA,14939
|
|
156
156
|
mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
|
|
157
|
-
mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
158
|
-
mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA,325
|
|
159
|
-
mindsdb/api/postgres/postgres_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
|
-
mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=oZhjbk6NYbjfP-z48jGqOWtNbYIKhcxviBz5DFHmqPU,19102
|
|
161
|
-
mindsdb/api/postgres/postgres_proxy/executor/__init__.py,sha256=ah4U7Z-XWrTGXwPovYZZLr1JTBbd7VB66CSBFgyNAxg,67
|
|
162
|
-
mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=taGbh13rn4J76JyQsIz8gHh-4080hcv-C3pM-nQhUiI,6375
|
|
163
|
-
mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
|
-
mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py,sha256=lqCz-LNPsonzrDsZ1vDd3gfWV0CQZVH9ynrOWr11NPc,12729
|
|
165
|
-
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py,sha256=Nv2_oDCFPRwoRpnqSXm546lAUDDJat7VMoJEHR9J16I,1121
|
|
166
|
-
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py,sha256=YzwqqOdkSqdWp_E_IY-UIkPpv0SakABZ7EsUdYtKFKo,1093
|
|
167
|
-
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py,sha256=LB1zEgsI0U_9rLdwVED0VQRz7AWR1EuCLDsR-WF1CTw,40739
|
|
168
|
-
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py,sha256=3qpSK3UWHW-Uo1qjgnz51aGPDCcVDfvQBcsmE932A8Y,626
|
|
169
|
-
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py,sha256=DsggIZ6N8YB8f3XnoUP5u0z57Kr4n-n6YJ66Z8z9u90,8520
|
|
170
|
-
mindsdb/api/postgres/postgres_proxy/utilities/__init__.py,sha256=3RdLBT2FuJ1jzjysirDmfzQ0ocRcrhKONrJw2XQB2PQ,259
|
|
171
157
|
mindsdb/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
158
|
mindsdb/integrations/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
159
|
mindsdb/integrations/handlers/access_handler/__about__.py,sha256=kTxz8PpOUa1zRCCgYRoef7GDBwgi1kNgVM45YakJBwA,372
|
|
@@ -294,7 +280,7 @@ mindsdb/integrations/handlers/box_handler/icon.svg,sha256=LhDX_Yikte5esxe9qOtHNn
|
|
|
294
280
|
mindsdb/integrations/handlers/box_handler/requirements.txt,sha256=FQc6GqJL5eYYA9-oPcRQbmJR0HrSmnSz-5Q82yiR2sE,11
|
|
295
281
|
mindsdb/integrations/handlers/byom_handler/__about__.py,sha256=5MMwfPjVWxerbcXI564QKIUaYW43COokSWU8KBBlOEg,330
|
|
296
282
|
mindsdb/integrations/handlers/byom_handler/__init__.py,sha256=vp4o5UA9txxJSa9RLE8UwioAR5yFOnnZHtxHX5XuBag,502
|
|
297
|
-
mindsdb/integrations/handlers/byom_handler/byom_handler.py,sha256=
|
|
283
|
+
mindsdb/integrations/handlers/byom_handler/byom_handler.py,sha256=TYyRS14l7hS54PLzem0O97ygzWFIg2fMNq6TnL5hra8,24305
|
|
298
284
|
mindsdb/integrations/handlers/byom_handler/connection_args.py,sha256=chqPtpiEBtko8kxS15ImkZ6Q3kuhv7vwOzV3JeyU4cU,522
|
|
299
285
|
mindsdb/integrations/handlers/byom_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
|
|
300
286
|
mindsdb/integrations/handlers/byom_handler/proc_wrapper.py,sha256=GqOB8Zw4-SYsn4lu3tkYORaNfgM4bm0HMDPyOJtErKk,5644
|
|
@@ -420,7 +406,7 @@ mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py,sh
|
|
|
420
406
|
mindsdb/integrations/handlers/databricks_handler/__about__.py,sha256=_DJsf3lXMtRb-c9tlUQesBW5_Vinsvd7uGjcDHaQhwE,363
|
|
421
407
|
mindsdb/integrations/handlers/databricks_handler/__init__.py,sha256=go72eMqUWKLj4j7wnUbf3znTL4TQXrLfc1hTpxBxumc,675
|
|
422
408
|
mindsdb/integrations/handlers/databricks_handler/connection_args.py,sha256=tdHFSNaXlAUFkM-FX7cMXEfdF6UtEgcNPSaRhFXuSUg,1885
|
|
423
|
-
mindsdb/integrations/handlers/databricks_handler/databricks_handler.py,sha256=
|
|
409
|
+
mindsdb/integrations/handlers/databricks_handler/databricks_handler.py,sha256=3jd9PWgK3JUUHphQ7T_HBjQs5aynDq5C2VjJb6U4cAc,11708
|
|
424
410
|
mindsdb/integrations/handlers/databricks_handler/icon.svg,sha256=p4vKYvjt5bXU6R88i6xcoNKHO2DNlAGZGGZPZKNkroU,618
|
|
425
411
|
mindsdb/integrations/handlers/databricks_handler/requirements.txt,sha256=W5yjZU0A5YjPZ5Ls_JEF6xNSQ-IsPKf7_iSxSAZ0IXY,43
|
|
426
412
|
mindsdb/integrations/handlers/databricks_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -488,7 +474,7 @@ mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py,sha2
|
|
|
488
474
|
mindsdb/integrations/handlers/druid_handler/__about__.py,sha256=psafZg7bMoHnSdx4ThYNV5hFZiq1Y8ZB06SqzAPvabw,362
|
|
489
475
|
mindsdb/integrations/handlers/druid_handler/__init__.py,sha256=eUEHsfHUYrqYnNzj_YKHAYQb8iDTdRkoamLITQvEEMM,599
|
|
490
476
|
mindsdb/integrations/handlers/druid_handler/connection_args.py,sha256=dlwEAIswp5kkBIiHGXGe_AkI06W6RukP5QPT4BxKvoI,1401
|
|
491
|
-
mindsdb/integrations/handlers/druid_handler/druid_handler.py,sha256=
|
|
477
|
+
mindsdb/integrations/handlers/druid_handler/druid_handler.py,sha256=8fNeQCGnciaxkTXS-QmAW20cPGrJNHCmIgFAVePeHRQ,6267
|
|
492
478
|
mindsdb/integrations/handlers/druid_handler/icon.svg,sha256=ak7qaXWafkb6MvCGtG5wAfVcffKNuARcUtF74uqVDEw,2823
|
|
493
479
|
mindsdb/integrations/handlers/druid_handler/requirements.txt,sha256=dahrkIufqj8IX1uzmprfLUzgIAKmeJYmrvcEhwOpdJI,8
|
|
494
480
|
mindsdb/integrations/handlers/druid_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -617,7 +603,7 @@ mindsdb/integrations/handlers/github_handler/icon.svg,sha256=c1j3IrEwYsGXPwW-hjZ
|
|
|
617
603
|
mindsdb/integrations/handlers/github_handler/requirements.txt,sha256=BJz2OYblSD2RZAV7csj2UIyRfuSQmstGWB3flUgFOk4,16
|
|
618
604
|
mindsdb/integrations/handlers/gitlab_handler/__about__.py,sha256=2uH49-_UriKLYrfBa8yIU6j1L9Bxpyp5Gqm7zsTT7eA,341
|
|
619
605
|
mindsdb/integrations/handlers/gitlab_handler/__init__.py,sha256=MleI0P8FKMYzbzd_XPkTbCjT1_Ub21hreu56QhXQuy8,481
|
|
620
|
-
mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py,sha256=
|
|
606
|
+
mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py,sha256=tYP0AGZujZMiCHhof0NIIdQZ5e4FL6kj5MA98LEKqaQ,2691
|
|
621
607
|
mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py,sha256=qgIcwzLQLByzBEMga9EIqsGuEVgF1LECLsC_L4w3xg4,15283
|
|
622
608
|
mindsdb/integrations/handlers/gitlab_handler/icon.svg,sha256=bQ1whEb3IObHqMiZAHomuekYicpYFVnD7W0y-4JyzKc,1995
|
|
623
609
|
mindsdb/integrations/handlers/gitlab_handler/requirements.txt,sha256=1W6ZjjUzciSZ0BX4yJ7C54BWdhWYLCw5ASu-VQohWro,13
|
|
@@ -1020,15 +1006,14 @@ mindsdb/integrations/handlers/mssql_handler/__about__.py,sha256=PIWwVwn9iAHApIWR
|
|
|
1020
1006
|
mindsdb/integrations/handlers/mssql_handler/__init__.py,sha256=eYkU7VeK9N8vb68pZEJYVNDIH4JslkIiz8HrX9HV2sQ,612
|
|
1021
1007
|
mindsdb/integrations/handlers/mssql_handler/connection_args.py,sha256=gqdCqCfjOvItZ-tAlUsh7QV7rfyjei_nj0rFX1hKEyE,1524
|
|
1022
1008
|
mindsdb/integrations/handlers/mssql_handler/icon.svg,sha256=CMPDc66jCYyao_ui5eRds92raysDIMNuhIs59Tvbk_8,11944
|
|
1023
|
-
mindsdb/integrations/handlers/mssql_handler/mssql_handler.py,sha256=
|
|
1009
|
+
mindsdb/integrations/handlers/mssql_handler/mssql_handler.py,sha256=yk76DneNegW0u9kygjAG4JxJqzH3AQVJTYvEvkJiKz4,27643
|
|
1024
1010
|
mindsdb/integrations/handlers/mssql_handler/requirements.txt,sha256=U59auV3ZAxBGXdMbyXxdRI3LTfCICvZVZWKWMnLUlwA,17
|
|
1025
|
-
mindsdb/integrations/handlers/mssql_handler/
|
|
1026
|
-
mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py,sha256=gh8t3ft5Xy-EZ3Rfk1oopojQTrbc_DDE-uAlWpeH-8E,6010
|
|
1011
|
+
mindsdb/integrations/handlers/mssql_handler/requirements_odbc.txt,sha256=bLU8k0noNs0obAseJAR2AIlSudRfkzG6lZG6CAzdnz0,34
|
|
1027
1012
|
mindsdb/integrations/handlers/mysql_handler/__about__.py,sha256=6kvzqW7nBK7T6fWasLd0kSRXltGkk6xH2PTkxZ46GgA,333
|
|
1028
1013
|
mindsdb/integrations/handlers/mysql_handler/__init__.py,sha256=vE9F5Fi6Xgpfpsy6ABbIdeHMbD0do4nHqvq8B94IvJU,627
|
|
1029
1014
|
mindsdb/integrations/handlers/mysql_handler/connection_args.py,sha256=btTVpawoIuruXOjAI7Ycmcega2Xgu7P8gSr1iz4lUew,2278
|
|
1030
1015
|
mindsdb/integrations/handlers/mysql_handler/icon.svg,sha256=yvGRJXlDZ7tyqGSjbgEgG-gDhrKPUVt2ifG6xdjSfAA,4136
|
|
1031
|
-
mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=
|
|
1016
|
+
mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=V2nZNfqp4P6_ZKj_p5Gv82vozfNUbIX3_4btAu9HsiI,20603
|
|
1032
1017
|
mindsdb/integrations/handlers/mysql_handler/requirements.txt,sha256=uDDh7neCc41qZxjCFB2rpKPTSZvD58RCfa7DjZJykw0,30
|
|
1033
1018
|
mindsdb/integrations/handlers/mysql_handler/settings.py,sha256=lC3KC5pr_IDeM9_hkAFkdui1INrin5ab_zKLOITxWbM,1722
|
|
1034
1019
|
mindsdb/integrations/handlers/neuralforecast_handler/__about__.py,sha256=qfziv8flt2mMSNCiZMOzXHN7karhW69QZy3rRnCdSY8,377
|
|
@@ -1119,13 +1104,11 @@ mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt,sha256=uEk8
|
|
|
1119
1104
|
mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1120
1105
|
mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py,sha256=Y54Bmy0WEMtWuA8tLEuqYisytrrctanPEFgeuQ_b1dQ,1228
|
|
1121
1106
|
mindsdb/integrations/handlers/oracle_handler/__about__.py,sha256=IIt4NVwQ52K79l7v7lc4andzcy6iiodvfjlAvQdHiCQ,354
|
|
1122
|
-
mindsdb/integrations/handlers/oracle_handler/__init__.py,sha256=
|
|
1123
|
-
mindsdb/integrations/handlers/oracle_handler/connection_args.py,sha256=
|
|
1107
|
+
mindsdb/integrations/handlers/oracle_handler/__init__.py,sha256=TiLn9hGp9oyP8kau1QSlgRNiQ4Xq-iTYXqNlZHmCsXg,631
|
|
1108
|
+
mindsdb/integrations/handlers/oracle_handler/connection_args.py,sha256=hvMqXZskTMpEgPaW2kpQYQa_QYisMC0Bc0ofeBr_gAo,2454
|
|
1124
1109
|
mindsdb/integrations/handlers/oracle_handler/icon.svg,sha256=43yVX7g6fI4SLk9h23xsJvzLl9fMOfiKlQ4aNyQ3yxU,537
|
|
1125
|
-
mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=
|
|
1126
|
-
mindsdb/integrations/handlers/oracle_handler/requirements.txt,sha256=
|
|
1127
|
-
mindsdb/integrations/handlers/oracle_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1128
|
-
mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py,sha256=TjY4cZHMPUaLyusCTTHCRGC30pXDUqqM2vEjw2UqB1Q,1064
|
|
1110
|
+
mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=wHcgNWybIhVjvziAn6yZraSLCgLO8V9hMrqOgSa5UuM,26979
|
|
1111
|
+
mindsdb/integrations/handlers/oracle_handler/requirements.txt,sha256=Ow68bpt7F5jCyxhUCa5ZohJVSMf0ZL57hE-CXAtIchE,15
|
|
1129
1112
|
mindsdb/integrations/handlers/orioledb_handler/__about__.py,sha256=AT5fv9NBW3ElkX0DHZpYa6MEge8OQbrYhxixz78iTaY,346
|
|
1130
1113
|
mindsdb/integrations/handlers/orioledb_handler/__init__.py,sha256=z5zE5RetKJHMqSTfwEu69yP2H_MXsa69_zKw1xkPHpo,605
|
|
1131
1114
|
mindsdb/integrations/handlers/orioledb_handler/connection_args.py,sha256=JFKd8CqZmUTxFmtbO-wrn3IjuF_9G36ImxMszdjGFRI,1003
|
|
@@ -1205,7 +1188,7 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
|
|
|
1205
1188
|
mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
|
|
1206
1189
|
mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
|
|
1207
1190
|
mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
|
|
1208
|
-
mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=
|
|
1191
|
+
mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=sDAgoLyfLvqMRKzYstRtsXM_R0OiX0SXmmpd1gg7Ogw,29648
|
|
1209
1192
|
mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1210
1193
|
mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=5dqzK1Wei9Lywh8T1ZHMGlsyzHFjZRMtd3glzAb7oDo,5829
|
|
1211
1194
|
mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
|
|
@@ -1356,8 +1339,8 @@ mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py,sha256
|
|
|
1356
1339
|
mindsdb/integrations/handlers/shopify_handler/__about__.py,sha256=w70w9xG4laoJ6fBvlDwacmDdMpPG6R-BhTV-1YB8ubA,346
|
|
1357
1340
|
mindsdb/integrations/handlers/shopify_handler/__init__.py,sha256=VeIeMd6vofxyaAkLPX6X63Ye0of6s768mZ7gLvXrQ_8,511
|
|
1358
1341
|
mindsdb/integrations/handlers/shopify_handler/icon.svg,sha256=-htxdS5C7rsXqiY3H0Y5LVhvHG_cb8Iw7MuJc8Ra2Qo,2452
|
|
1359
|
-
mindsdb/integrations/handlers/shopify_handler/requirements.txt,sha256=
|
|
1360
|
-
mindsdb/integrations/handlers/shopify_handler/shopify_handler.py,sha256=
|
|
1342
|
+
mindsdb/integrations/handlers/shopify_handler/requirements.txt,sha256=uWhyZwu4yTb-G3Yml_LKDICksbxLP80dnoQ_avbTKZg,28
|
|
1343
|
+
mindsdb/integrations/handlers/shopify_handler/shopify_handler.py,sha256=aDzN84oZhU8itDiE62FF3zuf7fyoY7eDMki8CEaZPM0,7788
|
|
1361
1344
|
mindsdb/integrations/handlers/shopify_handler/shopify_tables.py,sha256=eFxuR6PUx772Oc_LCgDOiDYjBhwS6fcDwiLgOFBhbnM,38545
|
|
1362
1345
|
mindsdb/integrations/handlers/singlestore_handler/__about__.py,sha256=_15qBORkD-oCNaAG43vfOz-8UokwaQlTJMkVPVphWtU,351
|
|
1363
1346
|
mindsdb/integrations/handlers/singlestore_handler/__init__.py,sha256=MSAEudTZyL-23T9amF0pU1wJjLYkn34VqJHtOYT1C1A,501
|
|
@@ -1644,7 +1627,7 @@ mindsdb/integrations/handlers/zendesk_handler/connection_args.py,sha256=xlvJDA5g
|
|
|
1644
1627
|
mindsdb/integrations/handlers/zendesk_handler/icon.svg,sha256=s1A5JS37n5wvlrPLTiE5ssExWahxgi0CbrpwiHhPpb8,1702
|
|
1645
1628
|
mindsdb/integrations/handlers/zendesk_handler/requirements.txt,sha256=isC2d0ECxc6bKij6WwDLroQYdLo9TLZhv-ukCJ_QBL4,5
|
|
1646
1629
|
mindsdb/integrations/handlers/zendesk_handler/zendesk_handler.py,sha256=CpAhZ2GCVFO-I5jkbUiBl1M8p9bao5xJDWUm_eYKzJg,2574
|
|
1647
|
-
mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py,sha256=
|
|
1630
|
+
mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py,sha256=TnK7QY8kZmD0f7cghjrtPTv_G7VFzkLcdwPKuzriUfM,14745
|
|
1648
1631
|
mindsdb/integrations/handlers/zipcodebase_handler/__about__.py,sha256=2ehsqaOMsHLhHnKMm_V0tw_7gJ9BBke8z_DyC-2RFHw,349
|
|
1649
1632
|
mindsdb/integrations/handlers/zipcodebase_handler/__init__.py,sha256=o0ehXXkJuWbAFTlb9gPqM3h6cti818PkfzFatr426hE,649
|
|
1650
1633
|
mindsdb/integrations/handlers/zipcodebase_handler/connection_args.py,sha256=4Ut8wlfgIuijAHM9zDZTKKLXrXbTXq6GJ3SCqt9NTh4,413
|
|
@@ -1669,7 +1652,7 @@ mindsdb/integrations/libs/keyword_search_base.py,sha256=U-O6AxIj8kZmnmoR3_RxO3Rk
|
|
|
1669
1652
|
mindsdb/integrations/libs/ml_exec_base.py,sha256=lp4LGXZUfTaPfY4V44osJQfz0pq0-l3V4gc1vl4rWoc,17540
|
|
1670
1653
|
mindsdb/integrations/libs/process_cache.py,sha256=6Gahc9jM7Kf_Vv7mT2DRvpycCQ8cReRxzLGSBaNspwA,15828
|
|
1671
1654
|
mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
|
|
1672
|
-
mindsdb/integrations/libs/response.py,sha256=
|
|
1655
|
+
mindsdb/integrations/libs/response.py,sha256=_Si1pclMQSDIuHtEzAlVnYtTIy7OeXKkiGKRcvPUcFg,6387
|
|
1673
1656
|
mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
|
|
1674
1657
|
mindsdb/integrations/libs/vectordatabase_handler.py,sha256=pyBzB6-dLzvSEo2E8XYV2DtVbmVPfPI69_KSnnH7KsU,21782
|
|
1675
1658
|
mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1712,6 +1695,8 @@ mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_acc
|
|
|
1712
1695
|
mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py,sha256=IJnVzD2WYavlKtZMJ5uW51CDUBthYnR0YoA_HBtKXDo,3737
|
|
1713
1696
|
mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py,sha256=T90ankGZeTN434zsA1Up6Ga9AQa7wWF_t64nUw25X78,119
|
|
1714
1697
|
mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py,sha256=YACUQ8qy34yexNg6ffnUuYkfNJ5OTcZ7Ejzgx9XEnc0,8217
|
|
1698
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/snowflake/__init__.py,sha256=_G-MriUR18ev5D-jCuDZzFZ3LWf7JwYwnpRuLJwxYbo,70
|
|
1699
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/snowflake/snowflake_jwt_gen.py,sha256=9Oxehw56R-M1_CoFAoNCBOVa05ZfX87DqpCLjgxwqx0,6003
|
|
1715
1700
|
mindsdb/integrations/utilities/handlers/query_utilities/__init__.py,sha256=Gy3epzeBeKSi5xFMs9Zq2ggAupWJTDWc_3C7X8rnSEU,279
|
|
1716
1701
|
mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py,sha256=XFmXkaDd1y2YwWDpVG6EptdWpT1QnW8cPmC9QEDyorw,1483
|
|
1717
1702
|
mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py,sha256=tylfQrK9kNAOdCpAKgTyACka1L4AGj-CT1JYpnjyRFc,1543
|
|
@@ -1739,7 +1724,7 @@ mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_load
|
|
|
1739
1724
|
mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1740
1725
|
mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=Ij91MJ0QpqocHs2vLfLO43PFZPFCyt1mvFjwvDecVU4,15551
|
|
1741
1726
|
mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1742
|
-
mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=
|
|
1727
|
+
mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=YRqRjW578P9h_cnktLKB_hn66GQT8y3WGmDpyytUZ-w,17931
|
|
1743
1728
|
mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=CpABoeVOYoD-vNx8ptMK6NgMVDmvHRkOzMpIcNIUqZE,3732
|
|
1744
1729
|
mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
|
|
1745
1730
|
mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py,sha256=ODNXqeBuDfatGQLvKvogO0aA-A5v3Z4xbCbvO5ICvt4,3923
|
|
@@ -1752,7 +1737,7 @@ mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TI
|
|
|
1752
1737
|
mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=LRbIfUg0iTyr2mEJjeya6qL2bMHtlfG5oJ5vjEB_cAE,5113
|
|
1753
1738
|
mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1754
1739
|
mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1755
|
-
mindsdb/interfaces/agents/agents_controller.py,sha256=
|
|
1740
|
+
mindsdb/interfaces/agents/agents_controller.py,sha256=CSZGLUKboV_msVmybyj0xtNV1OuG4y0T0bi-n48zv-s,32169
|
|
1756
1741
|
mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
|
|
1757
1742
|
mindsdb/interfaces/agents/constants.py,sha256=nMHosFmA7P3hvzpV_5Z2uAxVAJ-sw7Xz7EV5Un_lKtY,9819
|
|
1758
1743
|
mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
|
|
@@ -1775,27 +1760,28 @@ mindsdb/interfaces/chatbot/polling.py,sha256=QGbcz6RGxVslvzE0OH7fJ0XbYKuDQFDjvoL
|
|
|
1775
1760
|
mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
|
|
1776
1761
|
mindsdb/interfaces/data_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1777
1762
|
mindsdb/interfaces/data_catalog/base_data_catalog.py,sha256=6aigHIG7fTpkZBPM5UaIblI3QsfEit9DVQKp-Hg4PBg,2051
|
|
1778
|
-
mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=
|
|
1779
|
-
mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=
|
|
1763
|
+
mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=vVr5E4XE2VrpsXvTTHCuQEh-dOjGeTGQVOddXiZa1Ro,16122
|
|
1764
|
+
mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=oU_nUSvfyG4DcMIaMn-IbQFEMOCCqdQj_PatMzMQKL0,2593
|
|
1780
1765
|
mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1781
|
-
mindsdb/interfaces/database/
|
|
1782
|
-
mindsdb/interfaces/database/
|
|
1766
|
+
mindsdb/interfaces/database/data_handlers_cache.py,sha256=ONBvs6Z6Tlqtu7WUtc6QHfvblkSIY_mdVr0PHUUZoxQ,6966
|
|
1767
|
+
mindsdb/interfaces/database/database.py,sha256=J2FnRZ8DtgfKOPXkkbGcAa7kKXkqN8pudYYltnjP_ws,6768
|
|
1768
|
+
mindsdb/interfaces/database/integrations.py,sha256=SoufE7in-k15VE2iXz207mlGdjzDhyjhvJX36BbuDug,34025
|
|
1783
1769
|
mindsdb/interfaces/database/log.py,sha256=ZpsEKKEtF32KjWRQ5rMtnHZTHqqJiffeaEcUDTx44cs,10305
|
|
1784
|
-
mindsdb/interfaces/database/projects.py,sha256=
|
|
1785
|
-
mindsdb/interfaces/database/views.py,sha256=
|
|
1770
|
+
mindsdb/interfaces/database/projects.py,sha256=uozA3mkTqfVVkVBuIPX6h_bkOhkwVN9wHj88XNJfIQA,22706
|
|
1771
|
+
mindsdb/interfaces/database/views.py,sha256=uVhqPkVkGYkU9-0FgJuAjigOkZXddSPQTVtFDv06DZA,5684
|
|
1786
1772
|
mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1787
1773
|
mindsdb/interfaces/file/file_controller.py,sha256=rztvOD0ez-HvtYEt54pOrbi5MxN_wYMzm1xYJY7mOqU,8169
|
|
1788
1774
|
mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1789
1775
|
mindsdb/interfaces/functions/controller.py,sha256=EfbL_-5hSGn2rCjxxI7XmIU7MLj3rGBdopPc0vgnJ0s,7666
|
|
1790
1776
|
mindsdb/interfaces/functions/to_markdown.py,sha256=US4wdYPZ0_19EZZ3LsJhmyaHdzgIHqHcD1W79O97R2Q,3913
|
|
1791
1777
|
mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1792
|
-
mindsdb/interfaces/jobs/jobs_controller.py,sha256=
|
|
1793
|
-
mindsdb/interfaces/jobs/scheduler.py,sha256=
|
|
1778
|
+
mindsdb/interfaces/jobs/jobs_controller.py,sha256=D4z9t6dYBbJVudVk_tBA-IBFeHVa38_jeB6338LwiOc,18394
|
|
1779
|
+
mindsdb/interfaces/jobs/scheduler.py,sha256=tG5dPTGaPvOsM6mtDPGXeDYtNbwfWgiLv2hjx29ENmQ,3677
|
|
1794
1780
|
mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1795
|
-
mindsdb/interfaces/knowledge_base/controller.py,sha256=
|
|
1796
|
-
mindsdb/interfaces/knowledge_base/evaluate.py,sha256=
|
|
1797
|
-
mindsdb/interfaces/knowledge_base/executor.py,sha256=
|
|
1798
|
-
mindsdb/interfaces/knowledge_base/llm_client.py,sha256=
|
|
1781
|
+
mindsdb/interfaces/knowledge_base/controller.py,sha256=4Q8i3RoPnqMICdFajH4W4gWQjfOTErt6qePyaZsRSec,63234
|
|
1782
|
+
mindsdb/interfaces/knowledge_base/evaluate.py,sha256=UqC8k6GoOw17OLPF-r9GPMMUm8NOyXG2DrqqceSvVmg,21386
|
|
1783
|
+
mindsdb/interfaces/knowledge_base/executor.py,sha256=LJhv1V5v5tDLdnX8lktea3mKWGJQJioPZn3hzYwz76s,14471
|
|
1784
|
+
mindsdb/interfaces/knowledge_base/llm_client.py,sha256=6X8bSU-TaeQuybwLwtfbaxVx0860iV34yzuRw-E6mdM,4046
|
|
1799
1785
|
mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
|
|
1800
1786
|
mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1801
1787
|
mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
|
|
@@ -1806,7 +1792,7 @@ mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=76SO2G6tSqGzE64
|
|
|
1806
1792
|
mindsdb/interfaces/knowledge_base/preprocessing/text_splitter.py,sha256=sZKAaZ2cfJrGf1oX1rdeW6CEIsOEp31gIQ-d7sQGa5E,2824
|
|
1807
1793
|
mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1808
1794
|
mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
|
|
1809
|
-
mindsdb/interfaces/model/model_controller.py,sha256=
|
|
1795
|
+
mindsdb/interfaces/model/model_controller.py,sha256=ufJbyehqCGNmKBLmSxovhs0kU5OnI_3BiymJJGe6LpU,20261
|
|
1810
1796
|
mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1811
1797
|
mindsdb/interfaces/query_context/context_controller.py,sha256=xXBNDDQxW8vvGUidyZgVJkLO47-xL7netRe017P3f4c,19950
|
|
1812
1798
|
mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
|
|
@@ -1814,15 +1800,15 @@ mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54
|
|
|
1814
1800
|
mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1815
1801
|
mindsdb/interfaces/skills/retrieval_tool.py,sha256=cfwyUVDcKEP2rxQJzwKFN2ajKc4AUdIhie1NDcB0ZdA,8625
|
|
1816
1802
|
mindsdb/interfaces/skills/skill_tool.py,sha256=icUN-m8ogMtptwkNaSfVKEuKV0JMd8t9bcQX2IH1WOI,20684
|
|
1817
|
-
mindsdb/interfaces/skills/skills_controller.py,sha256=
|
|
1803
|
+
mindsdb/interfaces/skills/skills_controller.py,sha256=1KULT0VaD9NYeeMfoAfjNbg2pPNH7q23HtjWYG3JK9o,6661
|
|
1818
1804
|
mindsdb/interfaces/skills/sql_agent.py,sha256=lFdF4RLeV0rrTubJf2TsuiTuwNLPwie7_C26vLLrYac,27003
|
|
1819
1805
|
mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1820
1806
|
mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1821
1807
|
mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=upkozOXGLirA0gNiHSz8VXzhJc4NHYkV65uP_kUsVyg,10061
|
|
1822
1808
|
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
|
|
1823
|
-
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=
|
|
1809
|
+
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=SE5NmS1PfQNGK_BbP3DpzrMdubq25gC5HjxeuPVW6OM,12342
|
|
1824
1810
|
mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1825
|
-
mindsdb/interfaces/storage/db.py,sha256=
|
|
1811
|
+
mindsdb/interfaces/storage/db.py,sha256=8HuJvhDSrk00gzw3ZNoFNUCGULutOfTX_2KAflwatGQ,30296
|
|
1826
1812
|
mindsdb/interfaces/storage/fs.py,sha256=jKH64Ijmtm8lDBDmS-fo1mW7ZFILRW8IQlOi-1qNEug,20283
|
|
1827
1813
|
mindsdb/interfaces/storage/json.py,sha256=L3l4bj_kBJt_XUg8Hc2UAFDwrVCh2Kw7xCY43Qnbxtw,5105
|
|
1828
1814
|
mindsdb/interfaces/storage/model_fs.py,sha256=1RlVL53XNEZn-fPVSBOZjF2cBf2uMV83lEydzRPktq0,10988
|
|
@@ -1834,7 +1820,7 @@ mindsdb/interfaces/tasks/task_monitor.py,sha256=Z7aElzflNIex0Ga_BpjNSP8A9r7AsuaI
|
|
|
1834
1820
|
mindsdb/interfaces/tasks/task_thread.py,sha256=iM4cfIPwRUWoD9liFiRqIiSgnC13eVGFe9oacFSzQRs,1930
|
|
1835
1821
|
mindsdb/interfaces/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1836
1822
|
mindsdb/interfaces/triggers/trigger_task.py,sha256=sOwmtn8P2FzNys1vzFb3ldTtHwtJu4dr63deuskEB_k,2858
|
|
1837
|
-
mindsdb/interfaces/triggers/triggers_controller.py,sha256=
|
|
1823
|
+
mindsdb/interfaces/triggers/triggers_controller.py,sha256=abmdqq4pW6UXl9kyQM_u8ki5c_ShCLvT8FbZmnmtWgw,5569
|
|
1838
1824
|
mindsdb/interfaces/variables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1839
1825
|
mindsdb/interfaces/variables/variables_controller.py,sha256=Js7VjA6vU9LUE0OUrHNLdZohoq7tGN0y9O40yJq3f3M,2905
|
|
1840
1826
|
mindsdb/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1911,13 +1897,13 @@ mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
1911
1897
|
mindsdb/utilities/api_status.py,sha256=Z_3BLKZuglP0Horvle-oSiIaxp4TyS0z2k_zYXoHdU8,1714
|
|
1912
1898
|
mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
|
|
1913
1899
|
mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
|
|
1914
|
-
mindsdb/utilities/config.py,sha256=
|
|
1900
|
+
mindsdb/utilities/config.py,sha256=VJcaoLxJMrWCLHSu9_mN50VQ-V5XvEL3u6QmRZepqb4,24416
|
|
1915
1901
|
mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
|
|
1916
1902
|
mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
|
|
1917
|
-
mindsdb/utilities/exception.py,sha256=
|
|
1903
|
+
mindsdb/utilities/exception.py,sha256=g7gJ_nGneDHD-waCjr_YrTjYidQvbkGgwY2q05GQAsc,3705
|
|
1918
1904
|
mindsdb/utilities/fs.py,sha256=mrVg4V39F-YcPE_YzIdRj0Kl-f5nP2mnG0a322tF8Vo,5734
|
|
1919
1905
|
mindsdb/utilities/functions.py,sha256=FkLSSge3EYzG-ow6uExQ6GTMfPYeh8NBWRTf6JTuIy8,6366
|
|
1920
|
-
mindsdb/utilities/json_encoder.py,sha256
|
|
1906
|
+
mindsdb/utilities/json_encoder.py,sha256=iUsJFPFjUHxrlneMGVmChd6koO-6hqG_ku_FPLuT6Vw,1334
|
|
1921
1907
|
mindsdb/utilities/langfuse.py,sha256=Is9JpIACo0JQhZDI_-xtWbHyHxW7MDCCspHxPEFLwbY,9204
|
|
1922
1908
|
mindsdb/utilities/log.py,sha256=yHIz19YYg077wAnuR_4PkVWd6Ja2acoQaFZXDKEYuA0,17225
|
|
1923
1909
|
mindsdb/utilities/partitioning.py,sha256=EnFkEIfPMj2_uH7llOQqzjVrbGO2g0AzH2vQWPALnCA,1828
|
|
@@ -1925,7 +1911,7 @@ mindsdb/utilities/ps.py,sha256=6JqJoAMXqPo7rG0BkImF6szghcANx-Xt_4SRYFZ3rUU,2347
|
|
|
1925
1911
|
mindsdb/utilities/security.py,sha256=Jcd6v1UKRr4HY7SRkYdvF9zSjcqeKRO10f295XVZNAA,3017
|
|
1926
1912
|
mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
|
|
1927
1913
|
mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
|
|
1928
|
-
mindsdb/utilities/starters.py,sha256=
|
|
1914
|
+
mindsdb/utilities/starters.py,sha256=XZskEoKllYbO40e5yVMcKFAOU4kVlyepqkigJfdhkF0,1307
|
|
1929
1915
|
mindsdb/utilities/utils.py,sha256=RQC82-WUwlqSMY9M34Pb6a0LSTQrHY__ngLC0FkZZgo,1096
|
|
1930
1916
|
mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
|
|
1931
1917
|
mindsdb/utilities/hooks/__init__.py,sha256=HDPLuCxND4GUj5biGVfYeCmMZipMIyTG5WCOU3k654E,796
|
|
@@ -1946,9 +1932,9 @@ mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=4YH6YwclsYLjBPBM-e9OAf
|
|
|
1946
1932
|
mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0AzxXGBA40I-0,251
|
|
1947
1933
|
mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
|
|
1948
1934
|
mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1949
|
-
mindsdb/utilities/render/sqlalchemy_render.py,sha256=
|
|
1950
|
-
mindsdb-25.
|
|
1951
|
-
mindsdb-25.
|
|
1952
|
-
mindsdb-25.
|
|
1953
|
-
mindsdb-25.
|
|
1954
|
-
mindsdb-25.
|
|
1935
|
+
mindsdb/utilities/render/sqlalchemy_render.py,sha256=fPpZicT18_9EgM2K66OTyftbERVNn66ePiJdFX8bPYg,31315
|
|
1936
|
+
mindsdb-25.10.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
|
|
1937
|
+
mindsdb-25.10.0.dist-info/METADATA,sha256=9cTN_aiz3rhywduUyRcjaQR1hKMttiwHAZMEC4EQdn8,45545
|
|
1938
|
+
mindsdb-25.10.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1939
|
+
mindsdb-25.10.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
|
|
1940
|
+
mindsdb-25.10.0.dist-info/RECORD,,
|
mindsdb/api/postgres/__init__.py
DELETED
|
File without changes
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from mindsdb.api.postgres.postgres_proxy.executor.executor import *
|
|
@@ -1,182 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
|
|
3
|
-
from mindsdb_sql_parser import parse_sql
|
|
4
|
-
from mindsdb.api.executor.planner import utils as planner_utils
|
|
5
|
-
|
|
6
|
-
from numpy import dtype as np_dtype
|
|
7
|
-
from pandas.api import types as pd_types
|
|
8
|
-
|
|
9
|
-
from mindsdb.api.executor.sql_query import SQLQuery
|
|
10
|
-
from mindsdb.api.executor.sql_query.result_set import Column
|
|
11
|
-
from mindsdb.api.mysql.mysql_proxy.utilities.lightwood_dtype import dtype
|
|
12
|
-
from mindsdb.api.executor.command_executor import ExecuteCommands
|
|
13
|
-
from mindsdb.api.executor.exceptions import SqlSyntaxError
|
|
14
|
-
from mindsdb.api.postgres.postgres_proxy.postgres_packets.postgres_fields import POSTGRES_TYPES
|
|
15
|
-
from mindsdb.utilities import log
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
class Executor:
|
|
19
|
-
def __init__(self, session, proxy_server, charset=None):
|
|
20
|
-
self.session = session
|
|
21
|
-
self.server = proxy_server
|
|
22
|
-
|
|
23
|
-
self.logger = log.getLogger(__name__)
|
|
24
|
-
self.charset = charset or "utf8"
|
|
25
|
-
self.query = None
|
|
26
|
-
self.columns = []
|
|
27
|
-
self.params = []
|
|
28
|
-
self.data = None
|
|
29
|
-
self.server_status = None
|
|
30
|
-
self.state_track = None
|
|
31
|
-
self.is_executed = False
|
|
32
|
-
|
|
33
|
-
self.sql = ""
|
|
34
|
-
self.sql_lower = ""
|
|
35
|
-
|
|
36
|
-
self.command_executor = ExecuteCommands(self.session)
|
|
37
|
-
|
|
38
|
-
def parse(self, sql: Union[str, bytes]):
|
|
39
|
-
self.logger.info("%s.parse: sql - %s", self.__class__.__name__, sql)
|
|
40
|
-
if type(sql) == bytes:
|
|
41
|
-
sql = sql.decode(encoding=self.charset)
|
|
42
|
-
self.sql = sql
|
|
43
|
-
sql_lower = self.sql.lower()
|
|
44
|
-
self.sql_lower = sql_lower.replace("`", "")
|
|
45
|
-
|
|
46
|
-
try:
|
|
47
|
-
self.query = parse_sql(sql)
|
|
48
|
-
except Exception as mdb_error:
|
|
49
|
-
# not all statements are parsed by parse_sql
|
|
50
|
-
self.logger.warning("Failed to parse SQL query")
|
|
51
|
-
self.logger.debug(f"Query that cannot be parsed: {sql}")
|
|
52
|
-
|
|
53
|
-
raise SqlSyntaxError(f"The SQL statement cannot be parsed - {sql}: {mdb_error}") from mdb_error
|
|
54
|
-
|
|
55
|
-
def stmt_execute(self, param_values):
|
|
56
|
-
if self.is_executed:
|
|
57
|
-
return
|
|
58
|
-
|
|
59
|
-
# fill params
|
|
60
|
-
self.query = planner_utils.fill_query_params(self.query, param_values)
|
|
61
|
-
|
|
62
|
-
# execute query
|
|
63
|
-
self.do_execute()
|
|
64
|
-
|
|
65
|
-
def execute_external(self, sql):
|
|
66
|
-
return None
|
|
67
|
-
|
|
68
|
-
def query_execute(self, sql):
|
|
69
|
-
self.logger.info("%s.query_execute: sql - %s", self.__class__.__name__, sql)
|
|
70
|
-
resp = self.execute_external(sql)
|
|
71
|
-
if resp is not None:
|
|
72
|
-
# is already executed
|
|
73
|
-
self.is_executed = True
|
|
74
|
-
return
|
|
75
|
-
|
|
76
|
-
self.parse(sql)
|
|
77
|
-
self.do_execute()
|
|
78
|
-
|
|
79
|
-
def do_execute(self):
|
|
80
|
-
self.logger.info("%s.do_execute", self.__class__.__name__)
|
|
81
|
-
# it can be already run at prepare state
|
|
82
|
-
if self.is_executed:
|
|
83
|
-
return
|
|
84
|
-
|
|
85
|
-
ret = self.command_executor.execute_command(self.query)
|
|
86
|
-
|
|
87
|
-
self.is_executed = True
|
|
88
|
-
|
|
89
|
-
if ret.data is not None:
|
|
90
|
-
self.data = ret.data.to_lists()
|
|
91
|
-
self.columns = ret.data.columns
|
|
92
|
-
|
|
93
|
-
self.state_track = ret.state_track
|
|
94
|
-
|
|
95
|
-
def _to_json(self):
|
|
96
|
-
params = {
|
|
97
|
-
"columns": self.to_postgres_columns(self.columns),
|
|
98
|
-
"params": self.to_postgres_columns(self.params),
|
|
99
|
-
"data": self.data,
|
|
100
|
-
"state_track": self.state_track,
|
|
101
|
-
"server_status": self.server_status,
|
|
102
|
-
"is_executed": self.is_executed,
|
|
103
|
-
"session": self.session.to_json(),
|
|
104
|
-
}
|
|
105
|
-
return params
|
|
106
|
-
|
|
107
|
-
def to_postgres_columns(self, columns):
|
|
108
|
-
result = []
|
|
109
|
-
|
|
110
|
-
database = None if self.session.database == "" else self.session.database.lower()
|
|
111
|
-
for column_record in columns:
|
|
112
|
-
field_type = column_record.type
|
|
113
|
-
|
|
114
|
-
column_type = POSTGRES_TYPES.VARCHAR
|
|
115
|
-
# is already in mysql protocol type?
|
|
116
|
-
if isinstance(field_type, int):
|
|
117
|
-
column_type = POSTGRES_TYPES.INT
|
|
118
|
-
# pandas checks
|
|
119
|
-
elif isinstance(field_type, np_dtype):
|
|
120
|
-
if pd_types.is_integer_dtype(field_type):
|
|
121
|
-
column_type = POSTGRES_TYPES.LONG
|
|
122
|
-
elif pd_types.is_numeric_dtype(field_type):
|
|
123
|
-
column_type = POSTGRES_TYPES.DOUBLE
|
|
124
|
-
elif pd_types.is_datetime64_any_dtype(field_type):
|
|
125
|
-
column_type = POSTGRES_TYPES.DATETIME
|
|
126
|
-
# lightwood checks
|
|
127
|
-
elif field_type == dtype.date:
|
|
128
|
-
column_type = POSTGRES_TYPES.DATE
|
|
129
|
-
elif field_type == dtype.datetime:
|
|
130
|
-
column_type = POSTGRES_TYPES.DATETIME
|
|
131
|
-
elif field_type == dtype.float:
|
|
132
|
-
column_type = POSTGRES_TYPES.DOUBLE
|
|
133
|
-
elif field_type == dtype.integer:
|
|
134
|
-
column_type = POSTGRES_TYPES.LONG
|
|
135
|
-
|
|
136
|
-
if "()" in column_record.alias:
|
|
137
|
-
column_record.alias = column_record.alias.strip("()")
|
|
138
|
-
if "()" in column_record.name:
|
|
139
|
-
column_record.name = column_record.name.strip("()")
|
|
140
|
-
|
|
141
|
-
result.append(
|
|
142
|
-
{
|
|
143
|
-
"database": column_record.database or database,
|
|
144
|
-
# TODO add 'original_table'
|
|
145
|
-
"table_name": column_record.table_name,
|
|
146
|
-
"name": column_record.name,
|
|
147
|
-
"alias": column_record.alias or column_record.name,
|
|
148
|
-
# NOTE all work with text-type, but if/when wanted change types to real,
|
|
149
|
-
# it will need to check all types casts in BinaryResultsetRowPacket
|
|
150
|
-
"type": column_type,
|
|
151
|
-
}
|
|
152
|
-
)
|
|
153
|
-
return result
|
|
154
|
-
|
|
155
|
-
def change_default_db(self, new_db):
|
|
156
|
-
self.command_executor.change_default_db(new_db)
|
|
157
|
-
|
|
158
|
-
def stmt_prepare(self, sql):
|
|
159
|
-
# Returns True if ready for query afterwards.
|
|
160
|
-
# Check if execute external here
|
|
161
|
-
self.parse(sql)
|
|
162
|
-
params = planner_utils.get_query_params(self.query)
|
|
163
|
-
if len(params) == 0:
|
|
164
|
-
pass
|
|
165
|
-
# self.do_execute()
|
|
166
|
-
# return True
|
|
167
|
-
else:
|
|
168
|
-
# plan query
|
|
169
|
-
|
|
170
|
-
sqlquery = SQLQuery(self.query, session=self.session, execute=False)
|
|
171
|
-
|
|
172
|
-
sqlquery.prepare_query()
|
|
173
|
-
|
|
174
|
-
self.params = [
|
|
175
|
-
Column(
|
|
176
|
-
name=p.value,
|
|
177
|
-
alias=p.value,
|
|
178
|
-
type="str",
|
|
179
|
-
)
|
|
180
|
-
for p in params
|
|
181
|
-
]
|
|
182
|
-
self.columns = sqlquery.columns_list
|
|
File without changes
|