MindsDB 1.3.1__py3-none-any.whl → 24.12.4.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-24.12.4.0.dist-info/LICENSE +199 -0
- MindsDB-24.12.4.0.dist-info/METADATA +910 -0
- MindsDB-24.12.4.0.dist-info/RECORD +1922 -0
- {MindsDB-1.3.1.dist-info → MindsDB-24.12.4.0.dist-info}/WHEEL +1 -1
- mindsdb/__about__.py +5 -5
- mindsdb/__init__.py +1 -11
- mindsdb/__main__.py +556 -0
- mindsdb/api/common/check_auth.py +42 -0
- mindsdb/api/executor/__init__.py +2 -0
- mindsdb/api/executor/command_executor.py +2047 -0
- mindsdb/api/executor/controllers/__init__.py +1 -0
- mindsdb/api/executor/controllers/session_controller.py +91 -0
- mindsdb/api/executor/data_types/answer.py +16 -0
- mindsdb/api/executor/data_types/response_type.py +8 -0
- mindsdb/api/executor/datahub/__init__.py +1 -0
- mindsdb/api/executor/datahub/classes/tables_row.py +65 -0
- mindsdb/api/executor/datahub/datanodes/__init__.py +4 -0
- mindsdb/api/executor/datahub/datanodes/datanode.py +20 -0
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +180 -0
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py +281 -0
- mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +428 -0
- mindsdb/api/executor/datahub/datanodes/project_datanode.py +186 -0
- mindsdb/api/executor/datahub/datanodes/system_tables.py +525 -0
- mindsdb/api/executor/exceptions.py +39 -0
- mindsdb/api/executor/planner/__init__.py +5 -0
- mindsdb/api/executor/planner/exceptions.py +3 -0
- mindsdb/api/executor/planner/plan_join.py +640 -0
- mindsdb/api/executor/planner/plan_join_ts.py +384 -0
- mindsdb/api/executor/planner/query_plan.py +29 -0
- mindsdb/api/executor/planner/query_planner.py +837 -0
- mindsdb/api/executor/planner/query_prepare.py +527 -0
- mindsdb/api/executor/planner/step_result.py +19 -0
- mindsdb/api/executor/planner/steps.py +262 -0
- mindsdb/api/executor/planner/ts_utils.py +93 -0
- mindsdb/api/executor/planner/utils.py +126 -0
- mindsdb/api/executor/sql_query/result_set.py +312 -0
- mindsdb/api/executor/sql_query/sql_query.py +318 -0
- mindsdb/api/executor/sql_query/steps/__init__.py +13 -0
- mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +424 -0
- mindsdb/api/executor/sql_query/steps/base.py +21 -0
- mindsdb/api/executor/sql_query/steps/delete_step.py +49 -0
- mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +116 -0
- mindsdb/api/executor/sql_query/steps/insert_step.py +129 -0
- mindsdb/api/executor/sql_query/steps/join_step.py +109 -0
- mindsdb/api/executor/sql_query/steps/map_reduce_step.py +179 -0
- mindsdb/api/executor/sql_query/steps/multiple_step.py +24 -0
- mindsdb/api/executor/sql_query/steps/prepare_steps.py +59 -0
- mindsdb/api/executor/sql_query/steps/project_step.py +86 -0
- mindsdb/api/executor/sql_query/steps/sql_steps.py +41 -0
- mindsdb/api/executor/sql_query/steps/subselect_step.py +159 -0
- mindsdb/api/executor/sql_query/steps/union_step.py +56 -0
- mindsdb/api/executor/sql_query/steps/update_step.py +129 -0
- mindsdb/api/executor/utilities/functions.py +37 -0
- mindsdb/api/executor/utilities/sql.py +195 -0
- mindsdb/api/http/gui.py +94 -0
- mindsdb/api/http/gunicorn_wrapper.py +17 -0
- mindsdb/api/http/initialize.py +454 -0
- mindsdb/api/http/namespaces/agents.py +499 -0
- mindsdb/api/http/namespaces/analysis.py +117 -0
- mindsdb/api/http/namespaces/auth.py +167 -0
- mindsdb/api/http/namespaces/chatbots.py +318 -0
- mindsdb/api/http/namespaces/config.py +286 -0
- mindsdb/api/http/namespaces/configs/agents.py +3 -0
- mindsdb/api/http/namespaces/configs/analysis.py +3 -0
- mindsdb/api/http/namespaces/configs/auth.py +4 -0
- mindsdb/api/http/namespaces/configs/chatbots.py +3 -0
- mindsdb/api/http/namespaces/configs/config.py +3 -0
- mindsdb/api/http/namespaces/configs/databases.py +3 -0
- mindsdb/api/http/namespaces/configs/default.py +4 -0
- mindsdb/api/http/namespaces/configs/files.py +4 -0
- mindsdb/api/http/namespaces/configs/handlers.py +3 -0
- mindsdb/api/http/namespaces/configs/jobs.py +3 -0
- mindsdb/api/http/namespaces/configs/knowledge_bases.py +3 -0
- mindsdb/api/http/namespaces/configs/projects.py +3 -0
- mindsdb/api/http/namespaces/configs/skills.py +3 -0
- mindsdb/api/http/namespaces/configs/sql.py +3 -0
- mindsdb/api/http/namespaces/configs/tabs.py +3 -0
- mindsdb/api/http/namespaces/configs/tree.py +3 -0
- mindsdb/api/http/namespaces/configs/util.py +3 -0
- mindsdb/api/http/namespaces/configs/webhooks.py +3 -0
- mindsdb/api/http/namespaces/databases.py +394 -0
- mindsdb/api/http/namespaces/default.py +152 -0
- mindsdb/api/http/namespaces/file.py +191 -0
- mindsdb/api/http/namespaces/handlers.py +232 -0
- mindsdb/api/http/namespaces/jobs.py +99 -0
- mindsdb/api/http/namespaces/knowledge_bases.py +420 -0
- mindsdb/api/http/namespaces/models.py +297 -0
- mindsdb/api/http/namespaces/projects.py +46 -0
- mindsdb/api/http/namespaces/skills.py +170 -0
- mindsdb/api/http/namespaces/sql.py +162 -0
- mindsdb/api/http/namespaces/tab.py +131 -0
- mindsdb/api/http/namespaces/tree.py +105 -0
- mindsdb/api/http/namespaces/util.py +144 -0
- mindsdb/api/http/namespaces/views.py +153 -0
- mindsdb/api/http/namespaces/webhooks.py +29 -0
- mindsdb/api/http/start.py +67 -0
- mindsdb/api/http/utils.py +37 -0
- mindsdb/api/mongo/classes/__init__.py +5 -0
- mindsdb/api/mongo/classes/query_sql.py +18 -0
- mindsdb/api/mongo/classes/responder.py +45 -0
- mindsdb/api/mongo/classes/responder_collection.py +34 -0
- mindsdb/api/mongo/classes/scram.py +86 -0
- mindsdb/api/mongo/classes/session.py +23 -0
- mindsdb/api/mongo/functions/__init__.py +19 -0
- mindsdb/api/mongo/responders/__init__.py +73 -0
- mindsdb/api/mongo/responders/add_shard.py +13 -0
- mindsdb/api/mongo/responders/aggregate.py +90 -0
- mindsdb/api/mongo/responders/buildinfo.py +17 -0
- mindsdb/api/mongo/responders/coll_stats.py +62 -0
- mindsdb/api/mongo/responders/company_id.py +25 -0
- mindsdb/api/mongo/responders/connection_status.py +22 -0
- mindsdb/api/mongo/responders/count.py +21 -0
- mindsdb/api/mongo/responders/db_stats.py +31 -0
- mindsdb/api/mongo/responders/delete.py +105 -0
- mindsdb/api/mongo/responders/describe.py +23 -0
- mindsdb/api/mongo/responders/end_sessions.py +13 -0
- mindsdb/api/mongo/responders/find.py +175 -0
- mindsdb/api/mongo/responders/get_cmd_line_opts.py +18 -0
- mindsdb/api/mongo/responders/get_free_monitoring_status.py +14 -0
- mindsdb/api/mongo/responders/get_parameter.py +23 -0
- mindsdb/api/mongo/responders/getlog.py +14 -0
- mindsdb/api/mongo/responders/host_info.py +28 -0
- mindsdb/api/mongo/responders/insert.py +268 -0
- mindsdb/api/mongo/responders/is_master.py +20 -0
- mindsdb/api/mongo/responders/is_master_lower.py +13 -0
- mindsdb/api/mongo/responders/list_collections.py +55 -0
- mindsdb/api/mongo/responders/list_databases.py +37 -0
- mindsdb/api/mongo/responders/list_indexes.py +22 -0
- mindsdb/api/mongo/responders/ping.py +13 -0
- mindsdb/api/mongo/responders/recv_chunk_start.py +13 -0
- mindsdb/api/mongo/responders/replsetgetstatus.py +13 -0
- mindsdb/api/mongo/responders/sasl_continue.py +34 -0
- mindsdb/api/mongo/responders/sasl_start.py +33 -0
- mindsdb/api/mongo/responders/update_range_deletions.py +12 -0
- mindsdb/api/mongo/responders/whatsmyuri.py +18 -0
- mindsdb/api/mongo/server.py +388 -0
- mindsdb/api/mongo/start.py +15 -0
- mindsdb/api/mongo/utilities/mongodb_ast.py +257 -0
- mindsdb/api/mongo/utilities/mongodb_parser.py +145 -0
- mindsdb/api/mongo/utilities/mongodb_query.py +84 -0
- mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py +130 -0
- mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py +3 -0
- mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +37 -0
- mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py +22 -0
- mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py +151 -0
- mindsdb/api/mysql/mysql_proxy/data_types/__init__.py +0 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +212 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +166 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py +15 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +140 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py +44 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py +94 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py +159 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/eof_packet.py +52 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py +58 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py +20 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py +80 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py +96 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py +106 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py +13 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py +54 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py +46 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py +53 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py +16 -0
- mindsdb/api/mysql/mysql_proxy/executor/__init__.py +2 -0
- mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +138 -0
- mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py +0 -0
- mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py +135 -0
- mindsdb/api/mysql/mysql_proxy/libs/__init__.py +1 -0
- mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py +1 -0
- mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +1030 -0
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +930 -0
- mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +1 -0
- mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +18 -0
- mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py +48 -0
- mindsdb/api/mysql/start.py +13 -0
- mindsdb/api/postgres/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/executor/__init__.py +1 -0
- mindsdb/api/postgres/postgres_proxy/executor/executor.py +188 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +322 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +34 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +31 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +1265 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +31 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +253 -0
- mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +479 -0
- mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +10 -0
- mindsdb/api/postgres/start.py +11 -0
- mindsdb/integrations/__init__.py +0 -0
- mindsdb/integrations/handlers/__init__.py +0 -0
- mindsdb/integrations/handlers/access_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/access_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/access_handler/access_handler.py +197 -0
- mindsdb/integrations/handlers/access_handler/connection_args.py +15 -0
- mindsdb/integrations/handlers/access_handler/icon.svg +19 -0
- mindsdb/integrations/handlers/access_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/access_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/access_handler/tests/test_access_handler.py +32 -0
- mindsdb/integrations/handlers/aerospike_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/aerospike_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/aerospike_handler/aerospike_handler.py +236 -0
- mindsdb/integrations/handlers/aerospike_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/aerospike_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/aerospike_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/aerospike_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/aerospike_handler/tests/test_aerospike_handler.py +36 -0
- mindsdb/integrations/handlers/airtable_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/airtable_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +211 -0
- mindsdb/integrations/handlers/airtable_handler/connection_args.py +26 -0
- mindsdb/integrations/handlers/airtable_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/airtable_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py +34 -0
- mindsdb/integrations/handlers/altibase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/altibase_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +253 -0
- mindsdb/integrations/handlers/altibase_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/altibase_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/altibase_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/altibase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +67 -0
- mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py +68 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py +180 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/utils.py +21 -0
- mindsdb/integrations/handlers/anthropic_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/anthropic_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +108 -0
- mindsdb/integrations/handlers/anthropic_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/anthropic_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py +290 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/creation_args.py +14 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/settings.py +51 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/test_anyscale_endpoints_handler.py +212 -0
- mindsdb/integrations/handlers/apache_doris_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/apache_doris_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +10 -0
- mindsdb/integrations/handlers/apache_doris_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/apache_doris_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/aqicn_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/aqicn_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/aqicn_handler/aqicn.py +35 -0
- mindsdb/integrations/handlers/aqicn_handler/aqicn_handler.py +97 -0
- mindsdb/integrations/handlers/aqicn_handler/aqicn_tables.py +425 -0
- mindsdb/integrations/handlers/aqicn_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/aqicn_handler/icon.png +0 -0
- mindsdb/integrations/handlers/aqicn_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/athena_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/athena_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/athena_handler/athena_handler.py +218 -0
- mindsdb/integrations/handlers/athena_handler/connection_args.py +51 -0
- mindsdb/integrations/handlers/athena_handler/icon.svg +22 -0
- mindsdb/integrations/handlers/athena_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py +85 -0
- mindsdb/integrations/handlers/aurora_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/aurora_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +140 -0
- mindsdb/integrations/handlers/aurora_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/aurora_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/aurora_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/aurora_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_mysql_handler.py +37 -0
- mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_postgres_handler.py +37 -0
- mindsdb/integrations/handlers/autogluon_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/autogluon_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +57 -0
- mindsdb/integrations/handlers/autogluon_handler/config.py +17 -0
- mindsdb/integrations/handlers/autogluon_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/autogluon_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/autokeras_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/autokeras_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py +139 -0
- mindsdb/integrations/handlers/autokeras_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/autokeras_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/autosklearn_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/autosklearn_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +53 -0
- mindsdb/integrations/handlers/autosklearn_handler/config.py +29 -0
- mindsdb/integrations/handlers/autosklearn_handler/icon.png +0 -0
- mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/azure_blob_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/azure_blob_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/azure_blob_handler/azure_blob_handler.py +346 -0
- mindsdb/integrations/handlers/azure_blob_handler/connection_args.py +25 -0
- mindsdb/integrations/handlers/azure_blob_handler/icon.svg +30 -0
- mindsdb/integrations/handlers/azure_blob_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/bedrock_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/bedrock_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/bedrock_handler/bedrock_handler.py +328 -0
- mindsdb/integrations/handlers/bedrock_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/bedrock_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/bedrock_handler/settings.py +287 -0
- mindsdb/integrations/handlers/bedrock_handler/utilities.py +46 -0
- mindsdb/integrations/handlers/bigquery_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/bigquery_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +181 -0
- mindsdb/integrations/handlers/bigquery_handler/connection_args.py +30 -0
- mindsdb/integrations/handlers/bigquery_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/bigquery_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +221 -0
- mindsdb/integrations/handlers/binance_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/binance_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/binance_handler/binance_handler.py +144 -0
- mindsdb/integrations/handlers/binance_handler/binance_tables.py +175 -0
- mindsdb/integrations/handlers/binance_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/binance_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/box_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/box_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/box_handler/box_handler.py +257 -0
- mindsdb/integrations/handlers/box_handler/connection_args.py +17 -0
- mindsdb/integrations/handlers/box_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/box_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/byom_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/byom_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/byom_handler/byom_handler.py +678 -0
- mindsdb/integrations/handlers/byom_handler/connection_args.py +19 -0
- mindsdb/integrations/handlers/byom_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +229 -0
- mindsdb/integrations/handlers/byom_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/cassandra_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cassandra_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +27 -0
- mindsdb/integrations/handlers/cassandra_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/cassandra_handler/icon.svg +33 -0
- mindsdb/integrations/handlers/cassandra_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py +39 -0
- mindsdb/integrations/handlers/chromadb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/chromadb_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +491 -0
- mindsdb/integrations/handlers/chromadb_handler/connection_args.py +28 -0
- mindsdb/integrations/handlers/chromadb_handler/icon.png +0 -0
- mindsdb/integrations/handlers/chromadb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/chromadb_handler/settings.py +62 -0
- mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ckan_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ckan_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +310 -0
- mindsdb/integrations/handlers/ckan_handler/connection_args.py +22 -0
- mindsdb/integrations/handlers/ckan_handler/icon.png +0 -0
- mindsdb/integrations/handlers/ckan_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ckan_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py +156 -0
- mindsdb/integrations/handlers/clickhouse_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/clickhouse_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +168 -0
- mindsdb/integrations/handlers/clickhouse_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/clickhouse_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/clickhouse_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/clickhouse_handler/tests/test_clickhouse_handler.py +41 -0
- mindsdb/integrations/handlers/clipdrop_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/clipdrop_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/clipdrop_handler/clipdrop.py +87 -0
- mindsdb/integrations/handlers/clipdrop_handler/clipdrop_handler.py +193 -0
- mindsdb/integrations/handlers/clipdrop_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +219 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py +33 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/icon.png +0 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +50 -0
- mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cloud_sql_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +123 -0
- mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py +41 -0
- mindsdb/integrations/handlers/cloud_sql_handler/icon.png +0 -0
- mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/cloud_sql_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mssql_handler.py +37 -0
- mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mysql_handler.py +37 -0
- mindsdb/integrations/handlers/cockroach_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cockroach_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/cockroach_handler/cockroach_handler.py +11 -0
- mindsdb/integrations/handlers/cockroach_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/cockroach_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py +34 -0
- mindsdb/integrations/handlers/cohere_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cohere_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +88 -0
- mindsdb/integrations/handlers/cohere_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/cohere_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/coinbase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/coinbase_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/coinbase_handler/coinbase_handler.py +138 -0
- mindsdb/integrations/handlers/coinbase_handler/coinbase_tables.py +56 -0
- mindsdb/integrations/handlers/coinbase_handler/connection_args.py +34 -0
- mindsdb/integrations/handlers/coinbase_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/coinbase_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/confluence_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/confluence_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +102 -0
- mindsdb/integrations/handlers/confluence_handler/confluence_table.py +193 -0
- mindsdb/integrations/handlers/confluence_handler/connection_args.py +32 -0
- mindsdb/integrations/handlers/confluence_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/confluence_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/confluence_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py +68 -0
- mindsdb/integrations/handlers/couchbase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/couchbase_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/couchbase_handler/connection_args.py +31 -0
- mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +208 -0
- mindsdb/integrations/handlers/couchbase_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/couchbase_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/couchbase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py +39 -0
- mindsdb/integrations/handlers/couchbasevector_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/couchbasevector_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/couchbasevector_handler/connection_args.py +31 -0
- mindsdb/integrations/handlers/couchbasevector_handler/couchbasevector_handler.py +472 -0
- mindsdb/integrations/handlers/couchbasevector_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/couchbasevector_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/couchbasevector_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/crate_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/crate_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/crate_handler/crate_handler.py +226 -0
- mindsdb/integrations/handlers/crate_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/crate_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/crate_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py +46 -0
- mindsdb/integrations/handlers/d0lt_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/d0lt_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +12 -0
- mindsdb/integrations/handlers/d0lt_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/d0lt_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/d0lt_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py +53 -0
- mindsdb/integrations/handlers/databend_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/databend_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/databend_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/databend_handler/databend_handler.py +199 -0
- mindsdb/integrations/handlers/databend_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/databend_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/databend_handler/tests/__init__.py +1 -0
- mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +37 -0
- mindsdb/integrations/handlers/databricks_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/databricks_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/databricks_handler/connection_args.py +58 -0
- mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +261 -0
- mindsdb/integrations/handlers/databricks_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/databricks_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/databricks_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py +37 -0
- mindsdb/integrations/handlers/datastax_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/datastax_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +12 -0
- mindsdb/integrations/handlers/datastax_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/datastax_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/datastax_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py +38 -0
- mindsdb/integrations/handlers/db2_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/db2_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/db2_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/db2_handler/db2_handler.py +235 -0
- mindsdb/integrations/handlers/db2_handler/icon.svg +49 -0
- mindsdb/integrations/handlers/db2_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/db2_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py +46 -0
- mindsdb/integrations/handlers/derby_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/derby_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/derby_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/derby_handler/derby_handler.py +203 -0
- mindsdb/integrations/handlers/derby_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/derby_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/derby_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +46 -0
- mindsdb/integrations/handlers/discord_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/discord_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/discord_handler/discord_handler.py +187 -0
- mindsdb/integrations/handlers/discord_handler/discord_tables.py +189 -0
- mindsdb/integrations/handlers/discord_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/discord_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/discord_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +59 -0
- mindsdb/integrations/handlers/dockerhub_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dockerhub_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/dockerhub_handler/connection_args.py +25 -0
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +55 -0
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +112 -0
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +509 -0
- mindsdb/integrations/handlers/dockerhub_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/documentdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/documentdb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/documentdb_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +41 -0
- mindsdb/integrations/handlers/documentdb_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/dremio_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dremio_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/dremio_handler/connection_args.py +31 -0
- mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +222 -0
- mindsdb/integrations/handlers/dremio_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/dremio_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/dremio_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/dremio_handler/tests/test_dremio_handler.py +35 -0
- mindsdb/integrations/handlers/dropbox_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dropbox_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/dropbox_handler/connection_args.py +17 -0
- mindsdb/integrations/handlers/dropbox_handler/dropbox_handler.py +253 -0
- mindsdb/integrations/handlers/dropbox_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/dropbox_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/dropbox_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py +18 -0
- mindsdb/integrations/handlers/druid_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/druid_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/druid_handler/connection_args.py +51 -0
- mindsdb/integrations/handlers/druid_handler/druid_handler.py +216 -0
- mindsdb/integrations/handlers/druid_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/druid_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/druid_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/druid_handler/tests/test_druid_handler.py +35 -0
- mindsdb/integrations/handlers/dspy_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dspy_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/dspy_handler/dspy_handler.py +250 -0
- mindsdb/integrations/handlers/dspy_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/dspy_handler/requirements.txt +8 -0
- mindsdb/integrations/handlers/duckdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/duckdb_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/duckdb_handler/connection_args.py +17 -0
- mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +170 -0
- mindsdb/integrations/handlers/duckdb_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/duckdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py +48 -0
- mindsdb/integrations/handlers/dummy_data_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dummy_data_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py +97 -0
- mindsdb/integrations/handlers/dummy_data_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/dynamodb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dynamodb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/dynamodb_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +293 -0
- mindsdb/integrations/handlers/dynamodb_handler/icon.svg +17 -0
- mindsdb/integrations/handlers/dynamodb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/dynamodb_handler/tests/test_dynamodb_handler.py +34 -0
- mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/edgelessdb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/edgelessdb_handler/connection_args.py +45 -0
- mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +12 -0
- mindsdb/integrations/handlers/edgelessdb_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/edgelessdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +66 -0
- mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/elasticsearch_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py +38 -0
- mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +288 -0
- mindsdb/integrations/handlers/elasticsearch_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/elasticsearch_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/elasticsearch_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py +32 -0
- mindsdb/integrations/handlers/email_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/email_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/email_handler/email_client.py +165 -0
- mindsdb/integrations/handlers/email_handler/email_handler.py +99 -0
- mindsdb/integrations/handlers/email_handler/email_ingestor.py +86 -0
- mindsdb/integrations/handlers/email_handler/email_tables.py +159 -0
- mindsdb/integrations/handlers/email_handler/icon.png +0 -0
- mindsdb/integrations/handlers/email_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/email_handler/settings.py +60 -0
- mindsdb/integrations/handlers/empress_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/empress_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/empress_handler/connection_args.py +42 -0
- mindsdb/integrations/handlers/empress_handler/empress_handler.py +211 -0
- mindsdb/integrations/handlers/empress_handler/icon.png +0 -0
- mindsdb/integrations/handlers/empress_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/empress_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/empress_handler/tests/test_empress_handler.py +55 -0
- mindsdb/integrations/handlers/eventbrite_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/eventbrite_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/eventbrite_handler/eventbrite_handler.py +94 -0
- mindsdb/integrations/handlers/eventbrite_handler/eventbrite_tables.py +612 -0
- mindsdb/integrations/handlers/eventbrite_handler/icon.png +0 -0
- mindsdb/integrations/handlers/eventbrite_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/eventstoredb_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +216 -0
- mindsdb/integrations/handlers/eventstoredb_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/faunadb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/faunadb_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/faunadb_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/faunadb_handler/faunadb_handler.py +267 -0
- mindsdb/integrations/handlers/faunadb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/faunadb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/faunadb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py +41 -0
- mindsdb/integrations/handlers/file_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/file_handler/__init__.py +16 -0
- mindsdb/integrations/handlers/file_handler/file_handler.py +528 -0
- mindsdb/integrations/handlers/file_handler/icon.svg +8 -0
- mindsdb/integrations/handlers/file_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/file_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/file_handler/tests/data/test.txt +10 -0
- mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +458 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_handler.py +56 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_tables.py +89 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg +67 -0
- mindsdb/integrations/handlers/firebird_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/firebird_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/firebird_handler/connection_args.py +34 -0
- mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +240 -0
- mindsdb/integrations/handlers/firebird_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/firebird_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/firebird_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py +37 -0
- mindsdb/integrations/handlers/flaml_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/flaml_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +47 -0
- mindsdb/integrations/handlers/flaml_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/flaml_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/frappe_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/frappe_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/frappe_handler/frappe_client.py +111 -0
- mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +209 -0
- mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +82 -0
- mindsdb/integrations/handlers/frappe_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/frappe_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/gcs_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/gcs_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/gcs_handler/connection_args.py +29 -0
- mindsdb/integrations/handlers/gcs_handler/gcs_handler.py +375 -0
- mindsdb/integrations/handlers/gcs_handler/gcs_tables.py +50 -0
- mindsdb/integrations/handlers/gcs_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/gcs_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/github_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/github_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/github_handler/connection_args.py +32 -0
- mindsdb/integrations/handlers/github_handler/github_handler.py +124 -0
- mindsdb/integrations/handlers/github_handler/github_tables.py +965 -0
- mindsdb/integrations/handlers/github_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/github_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/gitlab_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/gitlab_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +84 -0
- mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +393 -0
- mindsdb/integrations/handlers/gitlab_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/gitlab_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/gmail_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/gmail_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/gmail_handler/connection_args.py +27 -0
- mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +566 -0
- mindsdb/integrations/handlers/gmail_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/gmail_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/gmail_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py +50 -0
- mindsdb/integrations/handlers/gmail_handler/utils.py +45 -0
- mindsdb/integrations/handlers/google_analytics_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_analytics_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py +129 -0
- mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py +283 -0
- mindsdb/integrations/handlers/google_analytics_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/google_analytics_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py +48 -0
- mindsdb/integrations/handlers/google_books_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_books_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +184 -0
- mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +185 -0
- mindsdb/integrations/handlers/google_books_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/google_books_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_books_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py +41 -0
- mindsdb/integrations/handlers/google_calendar_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_calendar_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/google_calendar_handler/connection_args.py +12 -0
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +292 -0
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +228 -0
- mindsdb/integrations/handlers/google_calendar_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py +56 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py +20 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +396 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +435 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py +64 -0
- mindsdb/integrations/handlers/google_fit_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_fit_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +155 -0
- mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +69 -0
- mindsdb/integrations/handlers/google_fit_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/google_fit_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/google_gemini_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_gemini_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py +370 -0
- mindsdb/integrations/handlers/google_gemini_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/google_gemini_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_search_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_search_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/google_search_handler/connection_args.py +15 -0
- mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +205 -0
- mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +220 -0
- mindsdb/integrations/handlers/google_search_handler/icon.svg +19 -0
- mindsdb/integrations/handlers/google_search_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_search_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py +55 -0
- mindsdb/integrations/handlers/greptimedb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/greptimedb_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py +21 -0
- mindsdb/integrations/handlers/greptimedb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/greptimedb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/groq_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/groq_handler/__init__.py +23 -0
- mindsdb/integrations/handlers/groq_handler/groq_handler.py +136 -0
- mindsdb/integrations/handlers/groq_handler/icon.svg +30 -0
- mindsdb/integrations/handlers/groq_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/groq_handler/settings.py +31 -0
- mindsdb/integrations/handlers/hackernews_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hackernews_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +102 -0
- mindsdb/integrations/handlers/hackernews_handler/hn_table.py +152 -0
- mindsdb/integrations/handlers/hackernews_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/hana_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hana_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/hana_handler/connection_args.py +57 -0
- mindsdb/integrations/handlers/hana_handler/hana_handler.py +259 -0
- mindsdb/integrations/handlers/hana_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/hana_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/hive_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hive_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/hive_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/hive_handler/hive_handler.py +224 -0
- mindsdb/integrations/handlers/hive_handler/icon.svg +41 -0
- mindsdb/integrations/handlers/hive_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/hive_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +50 -0
- mindsdb/integrations/handlers/hsqldb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hsqldb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/hsqldb_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +197 -0
- mindsdb/integrations/handlers/hsqldb_handler/icon.png +0 -0
- mindsdb/integrations/handlers/hsqldb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/hubspot_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hubspot_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py +96 -0
- mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py +589 -0
- mindsdb/integrations/handlers/hubspot_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/hubspot_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +6 -0
- mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +250 -0
- mindsdb/integrations/handlers/huggingface_api_handler/icon.svg +24 -0
- mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py +9 -0
- mindsdb/integrations/handlers/huggingface_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/huggingface_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/huggingface_handler/finetune.py +223 -0
- mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +383 -0
- mindsdb/integrations/handlers/huggingface_handler/icon.svg +24 -0
- mindsdb/integrations/handlers/huggingface_handler/requirements.txt +5 -0
- mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +6 -0
- mindsdb/integrations/handlers/huggingface_handler/settings.py +27 -0
- mindsdb/integrations/handlers/ibm_cos_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ibm_cos_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py +38 -0
- mindsdb/integrations/handlers/ibm_cos_handler/ibm_cos_handler.py +338 -0
- mindsdb/integrations/handlers/ibm_cos_handler/icon.svg +54 -0
- mindsdb/integrations/handlers/ibm_cos_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ibm_cos_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ibm_cos_handler/tests/test_ibm_cos_handler.py +23 -0
- mindsdb/integrations/handlers/ignite_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ignite_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/ignite_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/ignite_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +207 -0
- mindsdb/integrations/handlers/ignite_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ignite_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py +33 -0
- mindsdb/integrations/handlers/impala_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/impala_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/impala_handler/connection_args.py +37 -0
- mindsdb/integrations/handlers/impala_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/impala_handler/impala_handler.py +156 -0
- mindsdb/integrations/handlers/impala_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/impala_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +50 -0
- mindsdb/integrations/handlers/influxdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/influxdb_handler/__init__.py +26 -0
- mindsdb/integrations/handlers/influxdb_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +105 -0
- mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +81 -0
- mindsdb/integrations/handlers/influxdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/informix_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/informix_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/informix_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/informix_handler/informix_handler.py +318 -0
- mindsdb/integrations/handlers/informix_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/informix_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +52 -0
- mindsdb/integrations/handlers/ingres_handler/__about__.py +10 -0
- mindsdb/integrations/handlers/ingres_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/ingres_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/ingres_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +210 -0
- mindsdb/integrations/handlers/ingres_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/ingres_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py +53 -0
- mindsdb/integrations/handlers/instatus_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/instatus_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/instatus_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/instatus_handler/instatus_handler.py +127 -0
- mindsdb/integrations/handlers/instatus_handler/instatus_tables.py +393 -0
- mindsdb/integrations/handlers/intercom_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/intercom_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/intercom_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/intercom_handler/intercom_handler.py +117 -0
- mindsdb/integrations/handlers/intercom_handler/intercom_tables.py +152 -0
- mindsdb/integrations/handlers/jira_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/jira_handler/__init__.py +26 -0
- mindsdb/integrations/handlers/jira_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/jira_handler/jira_handler.py +119 -0
- mindsdb/integrations/handlers/jira_handler/jira_table.py +151 -0
- mindsdb/integrations/handlers/jira_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/kinetica_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/kinetica_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/kinetica_handler/connection_args.py +54 -0
- mindsdb/integrations/handlers/kinetica_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +12 -0
- mindsdb/integrations/handlers/lancedb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lancedb_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/lancedb_handler/connection_args.py +35 -0
- mindsdb/integrations/handlers/lancedb_handler/icon.svg +8 -0
- mindsdb/integrations/handlers/lancedb_handler/lancedb_handler.py +329 -0
- mindsdb/integrations/handlers/lancedb_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/lancedb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py +99 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py +23 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +221 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py +111 -0
- mindsdb/integrations/handlers/langchain_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/langchain_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/langchain_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +278 -0
- mindsdb/integrations/handlers/langchain_handler/requirements.txt +8 -0
- mindsdb/integrations/handlers/langchain_handler/tools.py +247 -0
- mindsdb/integrations/handlers/leonardoai_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/leonardoai_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/leonardoai_handler/icon.svg +306 -0
- mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py +225 -0
- mindsdb/integrations/handlers/leonardoai_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/libsql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/libsql_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/libsql_handler/connection_args.py +22 -0
- mindsdb/integrations/handlers/libsql_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/libsql_handler/libsql_handler.py +192 -0
- mindsdb/integrations/handlers/libsql_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/libsql_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/libsql_handler/tests/test_libsql_handler.py +45 -0
- mindsdb/integrations/handlers/lightdash_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lightdash_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/lightdash_handler/api.py +513 -0
- mindsdb/integrations/handlers/lightdash_handler/icon.png +0 -0
- mindsdb/integrations/handlers/lightdash_handler/lightdash_handler.py +108 -0
- mindsdb/integrations/handlers/lightdash_handler/lightdash_tables.py +648 -0
- mindsdb/integrations/handlers/lightdash_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lightfm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lightfm_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/lightfm_handler/helpers.py +175 -0
- mindsdb/integrations/handlers/lightfm_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py +198 -0
- mindsdb/integrations/handlers/lightfm_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/lightfm_handler/settings.py +7 -0
- mindsdb/integrations/handlers/lightwood_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lightwood_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/lightwood_handler/functions.py +252 -0
- mindsdb/integrations/handlers/lightwood_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +581 -0
- mindsdb/integrations/handlers/lightwood_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +258 -0
- mindsdb/integrations/handlers/lightwood_handler/utils.py +76 -0
- mindsdb/integrations/handlers/lindorm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lindorm_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/lindorm_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +220 -0
- mindsdb/integrations/handlers/lindorm_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/lindorm_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py +33 -0
- mindsdb/integrations/handlers/litellm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/litellm_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/litellm_handler/icon.png +0 -0
- mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +141 -0
- mindsdb/integrations/handlers/litellm_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/litellm_handler/settings.py +39 -0
- mindsdb/integrations/handlers/llama_index_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/llama_index_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/llama_index_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +201 -0
- mindsdb/integrations/handlers/llama_index_handler/requirements.txt +5 -0
- mindsdb/integrations/handlers/llama_index_handler/settings.py +65 -0
- mindsdb/integrations/handlers/ludwig_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ludwig_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/ludwig_handler/functions.py +0 -0
- mindsdb/integrations/handlers/ludwig_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py +68 -0
- mindsdb/integrations/handlers/ludwig_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/ludwig_handler/utils.py +12 -0
- mindsdb/integrations/handlers/luma_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/luma_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/luma_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/luma_handler/icon.png +0 -0
- mindsdb/integrations/handlers/luma_handler/luma.py +47 -0
- mindsdb/integrations/handlers/luma_handler/luma_handler.py +77 -0
- mindsdb/integrations/handlers/luma_handler/luma_tables.py +164 -0
- mindsdb/integrations/handlers/luma_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/mariadb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mariadb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/mariadb_handler/connection_args.py +76 -0
- mindsdb/integrations/handlers/mariadb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +12 -0
- mindsdb/integrations/handlers/mariadb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/materialize_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/materialize_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/materialize_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +43 -0
- mindsdb/integrations/handlers/materialize_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +56 -0
- mindsdb/integrations/handlers/matrixone_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/matrixone_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/matrixone_handler/connection_args.py +52 -0
- mindsdb/integrations/handlers/matrixone_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +168 -0
- mindsdb/integrations/handlers/matrixone_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/matrixone_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +56 -0
- mindsdb/integrations/handlers/maxdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/maxdb_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/maxdb_handler/connection_args.py +42 -0
- mindsdb/integrations/handlers/maxdb_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +185 -0
- mindsdb/integrations/handlers/maxdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/maxdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py +55 -0
- mindsdb/integrations/handlers/mediawiki_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mediawiki_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/mediawiki_handler/icon.svg +153 -0
- mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +87 -0
- mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +98 -0
- mindsdb/integrations/handlers/mediawiki_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mendeley_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mendeley_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/mendeley_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +225 -0
- mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +134 -0
- mindsdb/integrations/handlers/mendeley_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mendeley_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +108 -0
- mindsdb/integrations/handlers/merlion_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/merlion_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/merlion_handler/adapters.py +182 -0
- mindsdb/integrations/handlers/merlion_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +205 -0
- mindsdb/integrations/handlers/merlion_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/milvus_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/milvus_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/milvus_handler/connection_args.py +112 -0
- mindsdb/integrations/handlers/milvus_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +332 -0
- mindsdb/integrations/handlers/milvus_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/milvus_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py +23 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py +132 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/settings.py +18 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_handler.py +160 -0
- mindsdb/integrations/handlers/mlflow_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mlflow_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/mlflow_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +83 -0
- mindsdb/integrations/handlers/mlflow_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/monetdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/monetdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/monetdb_handler/connection_args.py +44 -0
- mindsdb/integrations/handlers/monetdb_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +219 -0
- mindsdb/integrations/handlers/monetdb_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/monetdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +50 -0
- mindsdb/integrations/handlers/monetdb_handler/utils/__init__.py +0 -0
- mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +50 -0
- mindsdb/integrations/handlers/mongodb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mongodb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/mongodb_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/mongodb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +372 -0
- mindsdb/integrations/handlers/mongodb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py +125 -0
- mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py +0 -0
- mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py +286 -0
- mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/monkeylearn_handler/icon.png +0 -0
- mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +81 -0
- mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg +31 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +102 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +252 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py +100 -0
- mindsdb/integrations/handlers/ms_teams_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ms_teams_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/ms_teams_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +193 -0
- mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/mssql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mssql_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/mssql_handler/connection_args.py +52 -0
- mindsdb/integrations/handlers/mssql_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +218 -0
- mindsdb/integrations/handlers/mssql_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mssql_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +169 -0
- mindsdb/integrations/handlers/mysql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mysql_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/mysql_handler/connection_args.py +76 -0
- mindsdb/integrations/handlers/mysql_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +214 -0
- mindsdb/integrations/handlers/mysql_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mysql_handler/settings.py +46 -0
- mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/neuralforecast_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/neuralforecast_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +135 -0
- mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt +2 -0
- mindsdb/integrations/handlers/newsapi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/newsapi_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/newsapi_handler/connection_args.py +14 -0
- mindsdb/integrations/handlers/newsapi_handler/icon.png +0 -0
- mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +209 -0
- mindsdb/integrations/handlers/newsapi_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/newsapi_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +90 -0
- mindsdb/integrations/handlers/notion_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/notion_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/notion_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/notion_handler/notion_handler.py +238 -0
- mindsdb/integrations/handlers/notion_handler/notion_table.py +422 -0
- mindsdb/integrations/handlers/notion_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/notion_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/notion_handler/tests/test_notion_handler.py +62 -0
- mindsdb/integrations/handlers/npm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/npm_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/npm_handler/api.py +26 -0
- mindsdb/integrations/handlers/npm_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/npm_handler/npm_handler.py +53 -0
- mindsdb/integrations/handlers/npm_handler/npm_tables.py +242 -0
- mindsdb/integrations/handlers/npm_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py +65 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +228 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +50 -0
- mindsdb/integrations/handlers/oceanbase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/oceanbase_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/oceanbase_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +48 -0
- mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/oceanbase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +56 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi.py +45 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +100 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +208 -0
- mindsdb/integrations/handlers/ollama_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ollama_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/ollama_handler/icon.png +0 -0
- mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +171 -0
- mindsdb/integrations/handlers/openai_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/openai_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/openai_handler/constants.py +36 -0
- mindsdb/integrations/handlers/openai_handler/creation_args.py +14 -0
- mindsdb/integrations/handlers/openai_handler/helpers.py +197 -0
- mindsdb/integrations/handlers/openai_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/openai_handler/model_using_args.py +5 -0
- mindsdb/integrations/handlers/openai_handler/openai_handler.py +1188 -0
- mindsdb/integrations/handlers/openai_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/openai_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py +509 -0
- mindsdb/integrations/handlers/openbb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/openbb_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/openbb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +119 -0
- mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +337 -0
- mindsdb/integrations/handlers/openbb_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/opengauss_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/opengauss_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/opengauss_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/opengauss_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +11 -0
- mindsdb/integrations/handlers/opengauss_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +45 -0
- mindsdb/integrations/handlers/openstreetmap_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/openstreetmap_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py +90 -0
- mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py +243 -0
- mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py +37 -0
- mindsdb/integrations/handlers/oracle_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/oracle_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/oracle_handler/connection_args.py +70 -0
- mindsdb/integrations/handlers/oracle_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +246 -0
- mindsdb/integrations/handlers/oracle_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/oracle_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +32 -0
- mindsdb/integrations/handlers/orioledb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/orioledb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/orioledb_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/orioledb_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +11 -0
- mindsdb/integrations/handlers/orioledb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +56 -0
- mindsdb/integrations/handlers/palm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/palm_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/palm_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/palm_handler/palm_handler.py +448 -0
- mindsdb/integrations/handlers/palm_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/paypal_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/paypal_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/paypal_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +145 -0
- mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +283 -0
- mindsdb/integrations/handlers/paypal_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/pgvector_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pgvector_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/pgvector_handler/connection_args.py +54 -0
- mindsdb/integrations/handlers/pgvector_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +447 -0
- mindsdb/integrations/handlers/pgvector_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/phoenix_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/phoenix_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/phoenix_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/phoenix_handler/icon.png +0 -0
- mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +229 -0
- mindsdb/integrations/handlers/phoenix_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/phoenix_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py +33 -0
- mindsdb/integrations/handlers/pinecone_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pinecone_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/pinecone_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/pinecone_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +304 -0
- mindsdb/integrations/handlers/pinecone_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/pinecone_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/pinot_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pinot_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/pinot_handler/connection_args.py +49 -0
- mindsdb/integrations/handlers/pinot_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +223 -0
- mindsdb/integrations/handlers/pinot_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/pinot_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py +36 -0
- mindsdb/integrations/handlers/pirateweather_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pirateweather_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/pirateweather_handler/connection_args.py +14 -0
- mindsdb/integrations/handlers/pirateweather_handler/icon.png +0 -0
- mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py +236 -0
- mindsdb/integrations/handlers/plaid_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/plaid_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/plaid_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +225 -0
- mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +159 -0
- mindsdb/integrations/handlers/plaid_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/plaid_handler/utils.py +9 -0
- mindsdb/integrations/handlers/planetscale_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/planetscale_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/planetscale_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/planetscale_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +14 -0
- mindsdb/integrations/handlers/planetscale_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py +103 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/portkey_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/portkey_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/portkey_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/portkey_handler/portkey_handler.py +79 -0
- mindsdb/integrations/handlers/portkey_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/postgres_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/postgres_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/postgres_handler/connection_args.py +65 -0
- mindsdb/integrations/handlers/postgres_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +396 -0
- mindsdb/integrations/handlers/postgres_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py +172 -0
- mindsdb/integrations/handlers/pycaret_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pycaret_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/pycaret_handler/icon.png +0 -0
- mindsdb/integrations/handlers/pycaret_handler/pycaret_handler.py +116 -0
- mindsdb/integrations/handlers/pycaret_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/pycaret_handler/test/__init__.py +0 -0
- mindsdb/integrations/handlers/pycaret_handler/test/test_pycaret.py +242 -0
- mindsdb/integrations/handlers/pypi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pypi_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/pypi_handler/api.py +152 -0
- mindsdb/integrations/handlers/pypi_handler/icon.svg +123 -0
- mindsdb/integrations/handlers/pypi_handler/pypi_handler.py +73 -0
- mindsdb/integrations/handlers/pypi_handler/pypi_tables.py +263 -0
- mindsdb/integrations/handlers/qdrant_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/qdrant_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/qdrant_handler/connection_args.py +75 -0
- mindsdb/integrations/handlers/qdrant_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +402 -0
- mindsdb/integrations/handlers/qdrant_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/questdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/questdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/questdb_handler/icon.svg +25 -0
- mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +72 -0
- mindsdb/integrations/handlers/questdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/questdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +35 -0
- mindsdb/integrations/handlers/quickbooks_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/quickbooks_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/quickbooks_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +97 -0
- mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +374 -0
- mindsdb/integrations/handlers/quickbooks_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rag_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/rag_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/rag_handler/exceptions.py +26 -0
- mindsdb/integrations/handlers/rag_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/rag_handler/ingest.py +185 -0
- mindsdb/integrations/handlers/rag_handler/rag.py +147 -0
- mindsdb/integrations/handlers/rag_handler/rag_handler.py +144 -0
- mindsdb/integrations/handlers/rag_handler/requirements.txt +6 -0
- mindsdb/integrations/handlers/rag_handler/settings.py +479 -0
- mindsdb/integrations/handlers/ray_serve_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ray_serve_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/ray_serve_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +66 -0
- mindsdb/integrations/handlers/reddit_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/reddit_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/reddit_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +106 -0
- mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +195 -0
- mindsdb/integrations/handlers/reddit_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/redshift_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/redshift_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/redshift_handler/connection_args.py +58 -0
- mindsdb/integrations/handlers/redshift_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +69 -0
- mindsdb/integrations/handlers/redshift_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py +154 -0
- mindsdb/integrations/handlers/replicate_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/replicate_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png +0 -0
- mindsdb/integrations/handlers/replicate_handler/assets/groot.png +0 -0
- mindsdb/integrations/handlers/replicate_handler/assets/warrior.png +0 -0
- mindsdb/integrations/handlers/replicate_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +162 -0
- mindsdb/integrations/handlers/replicate_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/rocket_chat_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/rocket_chat_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +153 -0
- mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +201 -0
- mindsdb/integrations/handlers/rockset_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/rockset_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/rockset_handler/connection_args.py +45 -0
- mindsdb/integrations/handlers/rockset_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/rockset_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +11 -0
- mindsdb/integrations/handlers/rockset_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/rockset_handler/tests/test.png +0 -0
- mindsdb/integrations/handlers/rockset_handler/tests/test2.png +0 -0
- mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +32 -0
- mindsdb/integrations/handlers/s3_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/s3_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/s3_handler/connection_args.py +47 -0
- mindsdb/integrations/handlers/s3_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/s3_handler/s3_handler.py +454 -0
- mindsdb/integrations/handlers/s3_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py +37 -0
- mindsdb/integrations/handlers/salesforce_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/salesforce_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/salesforce_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/salesforce_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/salesforce_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +180 -0
- mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +129 -0
- mindsdb/integrations/handlers/sap_erp_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sap_erp_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/sap_erp_handler/api.py +79 -0
- mindsdb/integrations/handlers/sap_erp_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/sap_erp_handler/sap_erp_handler.py +161 -0
- mindsdb/integrations/handlers/sap_erp_handler/sap_erp_tables.py +1928 -0
- mindsdb/integrations/handlers/sap_erp_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/scylla_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/scylla_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/scylla_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/scylla_handler/icon.svg +17 -0
- mindsdb/integrations/handlers/scylla_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +205 -0
- mindsdb/integrations/handlers/scylla_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py +38 -0
- mindsdb/integrations/handlers/sendinblue_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sendinblue_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/sendinblue_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/sendinblue_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +94 -0
- mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +276 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py +75 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/settings.py +12 -0
- mindsdb/integrations/handlers/serpstack_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/serpstack_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/serpstack_handler/icon.svg +86 -0
- mindsdb/integrations/handlers/serpstack_handler/serpstack_handler.py +123 -0
- mindsdb/integrations/handlers/serpstack_handler/serpstack_tables.py +260 -0
- mindsdb/integrations/handlers/sharepoint_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sharepoint_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/sharepoint_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/sharepoint_handler/sharepoint_api.py +579 -0
- mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +147 -0
- mindsdb/integrations/handlers/sharepoint_handler/sharepoint_tables.py +581 -0
- mindsdb/integrations/handlers/sharepoint_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py +53 -0
- mindsdb/integrations/handlers/sharepoint_handler/utils.py +163 -0
- mindsdb/integrations/handlers/sheets_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sheets_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sheets_handler/connection_args.py +20 -0
- mindsdb/integrations/handlers/sheets_handler/icon.svg +55 -0
- mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +176 -0
- mindsdb/integrations/handlers/sheets_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py +33 -0
- mindsdb/integrations/handlers/shopify_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/shopify_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/shopify_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/shopify_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +143 -0
- mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +1083 -0
- mindsdb/integrations/handlers/singlestore_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/singlestore_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/singlestore_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/singlestore_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +12 -0
- mindsdb/integrations/handlers/singlestore_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +42 -0
- mindsdb/integrations/handlers/slack_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/slack_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/slack_handler/connection_args.py +26 -0
- mindsdb/integrations/handlers/slack_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/slack_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/slack_handler/slack_handler.py +339 -0
- mindsdb/integrations/handlers/slack_handler/slack_tables.py +718 -0
- mindsdb/integrations/handlers/slack_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +27 -0
- mindsdb/integrations/handlers/snowflake_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/snowflake_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/snowflake_handler/connection_args.py +63 -0
- mindsdb/integrations/handlers/snowflake_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/snowflake_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +280 -0
- mindsdb/integrations/handlers/snowflake_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py +230 -0
- mindsdb/integrations/handlers/solace_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/solace_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/solace_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/solace_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/solace_handler/solace_handler.py +169 -0
- mindsdb/integrations/handlers/solr_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/solr_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/solr_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/solr_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/solr_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/solr_handler/solr_handler.py +176 -0
- mindsdb/integrations/handlers/solr_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +38 -0
- mindsdb/integrations/handlers/spacy_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/spacy_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/spacy_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/spacy_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/spacy_handler/spacy_handler.py +194 -0
- mindsdb/integrations/handlers/sqlany_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sqlany_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sqlany_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/sqlany_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/sqlany_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +179 -0
- mindsdb/integrations/handlers/sqlite_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sqlite_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sqlite_handler/connection_args.py +16 -0
- mindsdb/integrations/handlers/sqlite_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +184 -0
- mindsdb/integrations/handlers/sqlite_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py +32 -0
- mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sqreamdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py +48 -0
- mindsdb/integrations/handlers/sqreamdb_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +154 -0
- mindsdb/integrations/handlers/sqreamdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +45 -0
- mindsdb/integrations/handlers/stabilityai_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/stabilityai_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/stabilityai_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/stabilityai_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py +186 -0
- mindsdb/integrations/handlers/stabilityai_handler/stabilityai_handler.py +172 -0
- mindsdb/integrations/handlers/starrocks_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/starrocks_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/starrocks_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/starrocks_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +48 -0
- mindsdb/integrations/handlers/starrocks_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +56 -0
- mindsdb/integrations/handlers/statsforecast_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/statsforecast_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/statsforecast_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +1 -0
- mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +192 -0
- mindsdb/integrations/handlers/strapi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/strapi_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/strapi_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +153 -0
- mindsdb/integrations/handlers/strapi_handler/strapi_tables.py +131 -0
- mindsdb/integrations/handlers/strapi_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +51 -0
- mindsdb/integrations/handlers/strava_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/strava_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/strava_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/strava_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/strava_handler/strava_handler.py +113 -0
- mindsdb/integrations/handlers/strava_handler/strava_tables.py +247 -0
- mindsdb/integrations/handlers/stripe_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/stripe_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/stripe_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/stripe_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +102 -0
- mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +508 -0
- mindsdb/integrations/handlers/supabase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/supabase_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/supabase_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +11 -0
- mindsdb/integrations/handlers/supabase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +46 -0
- mindsdb/integrations/handlers/surrealdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/surrealdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/surrealdb_handler/connection_args.py +52 -0
- mindsdb/integrations/handlers/surrealdb_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +196 -0
- mindsdb/integrations/handlers/surrealdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py +57 -0
- mindsdb/integrations/handlers/surrealdb_handler/utils/__init__.py +0 -0
- mindsdb/integrations/handlers/surrealdb_handler/utils/surreal_get_info.py +20 -0
- mindsdb/integrations/handlers/symbl_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/symbl_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/symbl_handler/connection_args.py +25 -0
- mindsdb/integrations/handlers/symbl_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/symbl_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/symbl_handler/symbl_handler.py +106 -0
- mindsdb/integrations/handlers/symbl_handler/symbl_tables.py +648 -0
- mindsdb/integrations/handlers/tdengine_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tdengine_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/tdengine_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/tdengine_handler/icon.svg +59 -0
- mindsdb/integrations/handlers/tdengine_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +146 -0
- mindsdb/integrations/handlers/tdengine_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +48 -0
- mindsdb/integrations/handlers/teradata_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/teradata_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/teradata_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/teradata_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/teradata_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +245 -0
- mindsdb/integrations/handlers/tidb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tidb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/tidb_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/tidb_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/tidb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/tidb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +45 -0
- mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +11 -0
- mindsdb/integrations/handlers/timegpt_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/timegpt_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/timegpt_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/timegpt_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +205 -0
- mindsdb/integrations/handlers/timescaledb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/timescaledb_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/timescaledb_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/timescaledb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/timescaledb_handler/tests/test_timescaledb_handler.py +47 -0
- mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +46 -0
- mindsdb/integrations/handlers/tpot_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tpot_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/tpot_handler/icon.png +0 -0
- mindsdb/integrations/handlers/tpot_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +80 -0
- mindsdb/integrations/handlers/trino_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/trino_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/trino_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/trino_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/trino_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py +48 -0
- mindsdb/integrations/handlers/trino_handler/trino_config_provider.py +12 -0
- mindsdb/integrations/handlers/trino_handler/trino_handler.py +182 -0
- mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tripadvisor_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/tripadvisor_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_api.py +215 -0
- mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +275 -0
- mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_table.py +477 -0
- mindsdb/integrations/handlers/twelve_labs_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/twelve_labs_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/twelve_labs_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/twelve_labs_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/twelve_labs_handler/settings.py +271 -0
- mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_api_client.py +567 -0
- mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_handler.py +285 -0
- mindsdb/integrations/handlers/twilio_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/twilio_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/twilio_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/twilio_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +385 -0
- mindsdb/integrations/handlers/twitter_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/twitter_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/twitter_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/twitter_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +471 -0
- mindsdb/integrations/handlers/unify_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/unify_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/unify_handler/creation_args.py +14 -0
- mindsdb/integrations/handlers/unify_handler/icon.svg +25 -0
- mindsdb/integrations/handlers/unify_handler/model_using_args.py +5 -0
- mindsdb/integrations/handlers/unify_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/unify_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py +60 -0
- mindsdb/integrations/handlers/unify_handler/unify_handler.py +67 -0
- mindsdb/integrations/handlers/vertex_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/vertex_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/vertex_handler/icon.png +0 -0
- mindsdb/integrations/handlers/vertex_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/vertex_handler/vertex_client.py +95 -0
- mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +87 -0
- mindsdb/integrations/handlers/vertica_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/vertica_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/vertica_handler/connection_args.py +41 -0
- mindsdb/integrations/handlers/vertica_handler/icon.svg +8 -0
- mindsdb/integrations/handlers/vertica_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/vertica_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +53 -0
- mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +160 -0
- mindsdb/integrations/handlers/vitess_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/vitess_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/vitess_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/vitess_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/vitess_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +56 -0
- mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +48 -0
- mindsdb/integrations/handlers/weaviate_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/weaviate_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/weaviate_handler/connection_args.py +29 -0
- mindsdb/integrations/handlers/weaviate_handler/icon.svg +197 -0
- mindsdb/integrations/handlers/weaviate_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +652 -0
- mindsdb/integrations/handlers/web_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/web_handler/__init__.py +24 -0
- mindsdb/integrations/handlers/web_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/web_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +343 -0
- mindsdb/integrations/handlers/web_handler/web_handler.py +91 -0
- mindsdb/integrations/handlers/webz_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/webz_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/webz_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/webz_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/webz_handler/webz_handler.py +175 -0
- mindsdb/integrations/handlers/webz_handler/webz_tables.py +218 -0
- mindsdb/integrations/handlers/whatsapp_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/whatsapp_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/whatsapp_handler/icon.svg +19 -0
- mindsdb/integrations/handlers/whatsapp_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py +420 -0
- mindsdb/integrations/handlers/writer_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/writer_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/writer_handler/evaluate.py +362 -0
- mindsdb/integrations/handlers/writer_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/writer_handler/ingest.py +11 -0
- mindsdb/integrations/handlers/writer_handler/rag.py +14 -0
- mindsdb/integrations/handlers/writer_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/writer_handler/settings.py +86 -0
- mindsdb/integrations/handlers/writer_handler/writer_handler.py +188 -0
- mindsdb/integrations/handlers/xata_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/xata_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/xata_handler/connection_args.py +35 -0
- mindsdb/integrations/handlers/xata_handler/icon.svg +29 -0
- mindsdb/integrations/handlers/xata_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/xata_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/xata_handler/xata_handler.py +347 -0
- mindsdb/integrations/handlers/youtube_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/youtube_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/youtube_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/youtube_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +164 -0
- mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +448 -0
- mindsdb/integrations/handlers/yugabyte_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/yugabyte_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/yugabyte_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/yugabyte_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +49 -0
- mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +60 -0
- mindsdb/integrations/handlers/zendesk_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/zendesk_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/zendesk_handler/connection_args.py +33 -0
- mindsdb/integrations/handlers/zendesk_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/zendesk_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/zendesk_handler/zendesk_handler.py +89 -0
- mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py +463 -0
- mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/zipcodebase_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/zipcodebase_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/zipcodebase_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/zipcodebase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase.py +67 -0
- mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +107 -0
- mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +499 -0
- mindsdb/integrations/handlers/zotero_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/zotero_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/zotero_handler/icon.svg +102 -0
- mindsdb/integrations/handlers/zotero_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/zotero_handler/zotero_handler.py +109 -0
- mindsdb/integrations/handlers/zotero_handler/zotero_tables.py +157 -0
- mindsdb/integrations/libs/__init__.py +3 -0
- mindsdb/integrations/libs/api_handler.py +436 -0
- mindsdb/integrations/libs/api_handler_exceptions.py +18 -0
- mindsdb/integrations/libs/base.py +355 -0
- mindsdb/integrations/libs/const.py +23 -0
- mindsdb/integrations/libs/llm/__init__.py +0 -0
- mindsdb/integrations/libs/llm/config.py +106 -0
- mindsdb/integrations/libs/llm/utils.py +603 -0
- mindsdb/integrations/libs/ml_exec_base.py +453 -0
- mindsdb/integrations/libs/ml_handler_process/__init__.py +8 -0
- mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +28 -0
- mindsdb/integrations/libs/ml_handler_process/create_validation_process.py +14 -0
- mindsdb/integrations/libs/ml_handler_process/describe_process.py +117 -0
- mindsdb/integrations/libs/ml_handler_process/func_call_process.py +26 -0
- mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py +28 -0
- mindsdb/integrations/libs/ml_handler_process/learn_process.py +156 -0
- mindsdb/integrations/libs/ml_handler_process/predict_process.py +35 -0
- mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +28 -0
- mindsdb/integrations/libs/ml_handler_process/update_process.py +27 -0
- mindsdb/integrations/libs/process_cache.py +430 -0
- mindsdb/integrations/libs/realtime_chat_handler.py +33 -0
- mindsdb/integrations/libs/response.py +95 -0
- mindsdb/integrations/libs/storage_handler.py +88 -0
- mindsdb/integrations/libs/vectordatabase_handler.py +534 -0
- mindsdb/integrations/utilities/__init__.py +0 -0
- mindsdb/integrations/utilities/datasets/__init__.py +0 -0
- mindsdb/integrations/utilities/datasets/dataset.py +73 -0
- mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv +21 -0
- mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv +106 -0
- mindsdb/integrations/utilities/date_utils.py +79 -0
- mindsdb/integrations/utilities/handler_utils.py +70 -0
- mindsdb/integrations/utilities/handlers/__init__.py +0 -0
- mindsdb/integrations/utilities/handlers/api_utilities/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +138 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py +2 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py +11 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py +2 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py +59 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py +108 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py +128 -0
- mindsdb/integrations/utilities/handlers/query_utilities/__init__.py +4 -0
- mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py +63 -0
- mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py +44 -0
- mindsdb/integrations/utilities/handlers/query_utilities/exceptions.py +17 -0
- mindsdb/integrations/utilities/handlers/query_utilities/insert_query_utilities.py +71 -0
- mindsdb/integrations/utilities/handlers/query_utilities/select_query_utilities.py +134 -0
- mindsdb/integrations/utilities/handlers/query_utilities/update_query_utilities.py +67 -0
- mindsdb/integrations/utilities/handlers/validation_utilities/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validation_utilities.py +18 -0
- mindsdb/integrations/utilities/install.py +134 -0
- mindsdb/integrations/utilities/query_traversal.py +239 -0
- mindsdb/integrations/utilities/rag/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/chains/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py +218 -0
- mindsdb/integrations/utilities/rag/config_loader.py +77 -0
- mindsdb/integrations/utilities/rag/loaders/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/loaders/file_loader.py +44 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/MDBVectorStore.py +54 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py +84 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py +60 -0
- mindsdb/integrations/utilities/rag/pipelines/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/pipelines/rag.py +253 -0
- mindsdb/integrations/utilities/rag/rag_pipeline_builder.py +83 -0
- mindsdb/integrations/utilities/rag/rerankers/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +156 -0
- mindsdb/integrations/utilities/rag/retrievers/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py +117 -0
- mindsdb/integrations/utilities/rag/retrievers/base.py +10 -0
- mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py +101 -0
- mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +149 -0
- mindsdb/integrations/utilities/rag/settings.py +511 -0
- mindsdb/integrations/utilities/rag/splitters/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/splitters/file_splitter.py +132 -0
- mindsdb/integrations/utilities/rag/utils.py +52 -0
- mindsdb/integrations/utilities/rag/vector_store.py +99 -0
- mindsdb/integrations/utilities/sql_utils.py +224 -0
- mindsdb/integrations/utilities/test_utils.py +30 -0
- mindsdb/integrations/utilities/time_series_utils.py +191 -0
- mindsdb/integrations/utilities/utils.py +32 -0
- mindsdb/interfaces/__init__.py +1 -0
- mindsdb/interfaces/agents/__init__.py +0 -0
- mindsdb/interfaces/agents/agents_controller.py +435 -0
- mindsdb/interfaces/agents/callback_handlers.py +130 -0
- mindsdb/interfaces/agents/constants.py +179 -0
- mindsdb/interfaces/agents/langchain_agent.py +676 -0
- mindsdb/interfaces/agents/langfuse_callback_handler.py +163 -0
- mindsdb/interfaces/agents/mindsdb_chat_model.py +196 -0
- mindsdb/interfaces/agents/mindsdb_database_agent.py +54 -0
- mindsdb/interfaces/agents/safe_output_parser.py +51 -0
- mindsdb/interfaces/chatbot/__init__.py +1 -0
- mindsdb/interfaces/chatbot/chatbot_controller.py +409 -0
- mindsdb/interfaces/chatbot/chatbot_executor.py +226 -0
- mindsdb/interfaces/chatbot/chatbot_task.py +174 -0
- mindsdb/interfaces/chatbot/memory.py +223 -0
- mindsdb/interfaces/chatbot/model_executor.py +107 -0
- mindsdb/interfaces/chatbot/polling.py +233 -0
- mindsdb/interfaces/chatbot/types.py +38 -0
- mindsdb/interfaces/database/__init__.py +0 -0
- mindsdb/interfaces/database/database.py +122 -0
- mindsdb/interfaces/database/integrations.py +931 -0
- mindsdb/interfaces/database/log.py +297 -0
- mindsdb/interfaces/database/projects.py +397 -0
- mindsdb/interfaces/database/views.py +139 -0
- mindsdb/interfaces/file/__init__.py +0 -0
- mindsdb/interfaces/file/file_controller.py +146 -0
- mindsdb/interfaces/functions/__init__.py +0 -0
- mindsdb/interfaces/functions/controller.py +207 -0
- mindsdb/interfaces/jobs/__init__.py +0 -0
- mindsdb/interfaces/jobs/jobs_controller.py +549 -0
- mindsdb/interfaces/jobs/scheduler.py +143 -0
- mindsdb/interfaces/knowledge_base/__init__.py +0 -0
- mindsdb/interfaces/knowledge_base/controller.py +899 -0
- mindsdb/interfaces/knowledge_base/preprocessing/__init__.py +0 -0
- mindsdb/interfaces/knowledge_base/preprocessing/constants.py +13 -0
- mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py +176 -0
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +401 -0
- mindsdb/interfaces/knowledge_base/preprocessing/models.py +108 -0
- mindsdb/interfaces/model/__init__.py +0 -0
- mindsdb/interfaces/model/functions.py +155 -0
- mindsdb/interfaces/model/model_controller.py +488 -0
- mindsdb/interfaces/query_context/__init__.py +0 -0
- mindsdb/interfaces/query_context/context_controller.py +289 -0
- mindsdb/interfaces/query_context/last_query.py +266 -0
- mindsdb/interfaces/skills/__init__.py +1 -0
- mindsdb/interfaces/skills/custom/__init__.py +0 -0
- mindsdb/interfaces/skills/custom/text2sql/__init__.py +0 -0
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py +37 -0
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +88 -0
- mindsdb/interfaces/skills/retrieval_tool.py +110 -0
- mindsdb/interfaces/skills/skill_tool.py +255 -0
- mindsdb/interfaces/skills/skills_controller.py +175 -0
- mindsdb/interfaces/skills/sql_agent.py +256 -0
- mindsdb/interfaces/storage/__init__.py +1 -0
- mindsdb/interfaces/storage/db.py +597 -0
- mindsdb/interfaces/storage/fs.py +631 -0
- mindsdb/interfaces/storage/json.py +97 -0
- mindsdb/interfaces/storage/model_fs.py +282 -0
- mindsdb/interfaces/tabs/__init__.py +0 -0
- mindsdb/interfaces/tabs/tabs_controller.py +291 -0
- mindsdb/interfaces/tasks/__init__.py +0 -0
- mindsdb/interfaces/tasks/task.py +16 -0
- mindsdb/interfaces/tasks/task_monitor.py +150 -0
- mindsdb/interfaces/tasks/task_thread.py +55 -0
- mindsdb/interfaces/triggers/__init__.py +0 -0
- mindsdb/interfaces/triggers/trigger_task.py +95 -0
- mindsdb/interfaces/triggers/triggers_controller.py +167 -0
- mindsdb/metrics/__init__.py +0 -0
- mindsdb/metrics/metrics.py +50 -0
- mindsdb/metrics/server.py +26 -0
- mindsdb/migrations/__init__.py +0 -0
- mindsdb/migrations/alembic.ini +65 -0
- mindsdb/migrations/env.py +87 -0
- mindsdb/migrations/migrate.py +53 -0
- mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +178 -0
- mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py +38 -0
- mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py +256 -0
- mindsdb/migrations/versions/2022-05-25_d74c189b87e6_predictor_integration.py +156 -0
- mindsdb/migrations/versions/2022-07-08_999bceb904df_integration_args.py +106 -0
- mindsdb/migrations/versions/2022-07-15_b5b53e0ea7f8_training_data_rows_columns_count.py +29 -0
- mindsdb/migrations/versions/2022-07-22_6e834843e7e9_training_time.py +33 -0
- mindsdb/migrations/versions/2022-08-19_976f15a37e6a_predictors_versioning.py +42 -0
- mindsdb/migrations/versions/2022-08-25_6a54ba55872e_view_integration.py +36 -0
- mindsdb/migrations/versions/2022-08-29_473e8f239481_straighten.py +81 -0
- mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py +69 -0
- mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py +74 -0
- mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py +59 -0
- mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py +90 -0
- mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +115 -0
- mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py +66 -0
- mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py +106 -0
- mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py +34 -0
- mindsdb/migrations/versions/2023-02-02_b6d0a47294ac_jobs.py +56 -0
- mindsdb/migrations/versions/2023-02-17_ee63d868fa84_predictor_integration_null.py +42 -0
- mindsdb/migrations/versions/2023-02-25_3154382dab17_training_progress.py +36 -0
- mindsdb/migrations/versions/2023-02-27_ef04cdbe51ed_jobs_user_class.py +33 -0
- mindsdb/migrations/versions/2023-04-11_b8be148dbc85_jobs_history_query.py +35 -0
- mindsdb/migrations/versions/2023-05-24_6d748f2c7b0b_remove_streams.py +46 -0
- mindsdb/migrations/versions/2023-05-31_aaecd7012a78_chatbot.py +41 -0
- mindsdb/migrations/versions/2023-06-16_9d6271bb2c38_update_chat_bots_table.py +28 -0
- mindsdb/migrations/versions/2023-06-19_b5bf593ba659_create_chat_bots_history_table.py +35 -0
- mindsdb/migrations/versions/2023-06-27_607709e1615b_update_project_names.py +60 -0
- mindsdb/migrations/versions/2023-07-13_a57506731839_triggers.py +54 -0
- mindsdb/migrations/versions/2023-07-19_ad04ee0bd385_chatbot_to_task.py +38 -0
- mindsdb/migrations/versions/2023-08-29_b0382f5be48d_predictor_hostname.py +26 -0
- mindsdb/migrations/versions/2023-08-31_4c26ad04eeaa_add_skills_table.py +32 -0
- mindsdb/migrations/versions/2023-09-06_d44ab65a6a35_add_agents_table.py +35 -0
- mindsdb/migrations/versions/2023-09-06_e187961e844a_add_agent_skills_table.py +29 -0
- mindsdb/migrations/versions/2023-09-18_011e6f2dd9c2_backfill_agent_id.py +82 -0
- mindsdb/migrations/versions/2023-09-18_f16d4ab03091_add_agent_id.py +28 -0
- mindsdb/migrations/versions/2023-09-20_309db3d07cf4_add_knowledge_base.py +54 -0
- mindsdb/migrations/versions/2023-10-03_6cb02dfd7f61_query_context.py +38 -0
- mindsdb/migrations/versions/2023-11-01_c67822e96833_jobs_active.py +33 -0
- mindsdb/migrations/versions/2023-12-25_4b3c9d63e89c_predictor_index.py +44 -0
- mindsdb/migrations/versions/2024-02-02_5a5c49313e52_job_condition.py +32 -0
- mindsdb/migrations/versions/2024-02-12_9461892bd889_llm_log.py +44 -0
- mindsdb/migrations/versions/2024-04-25_2958416fbe75_drop_semaphor.py +36 -0
- mindsdb/migrations/versions/2024-06-06_cbedc4968d5d_store_llm_data.py +34 -0
- mindsdb/migrations/versions/2024-07-09_bfc6f44f5bc9_agent_model_optional.py +50 -0
- mindsdb/migrations/versions/2024-07-19_45eb2eb61f70_add_provider_to_agent.py +47 -0
- mindsdb/migrations/versions/2024-08-12_8e17ff6b75e9_agents_deleted_at.py +42 -0
- mindsdb/migrations/versions/2024-10-07_6c57ed39a82b_added_webhook_token_to_chat_bots.py +27 -0
- mindsdb/migrations/versions/2024-11-15_9d559f68d535_add_llm_log_columns.py +41 -0
- mindsdb/migrations/versions/2024-11-19_0f89b523f346_agent_skills_parameters.py +28 -0
- mindsdb/migrations/versions/2024-11-28_a8a3fac369e7_llm_log_json_in_out.py +103 -0
- mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.py +44 -0
- mindsdb/migrations/versions/__init__.py +0 -0
- mindsdb/utilities/__init__.py +0 -0
- mindsdb/utilities/auth.py +73 -0
- mindsdb/utilities/cache.py +282 -0
- mindsdb/utilities/config.py +530 -0
- mindsdb/utilities/context.py +57 -0
- mindsdb/utilities/context_executor.py +59 -0
- mindsdb/utilities/exception.py +29 -0
- mindsdb/utilities/fs.py +153 -0
- mindsdb/utilities/functions.py +197 -0
- mindsdb/utilities/hooks/__init__.py +34 -0
- mindsdb/utilities/hooks/profiling.py +74 -0
- mindsdb/utilities/json_encoder.py +33 -0
- mindsdb/utilities/log.py +97 -0
- mindsdb/utilities/log_controller.py +39 -0
- mindsdb/utilities/ml_task_queue/__init__.py +57 -0
- mindsdb/utilities/ml_task_queue/base.py +14 -0
- mindsdb/utilities/ml_task_queue/const.py +26 -0
- mindsdb/utilities/ml_task_queue/consumer.py +252 -0
- mindsdb/utilities/ml_task_queue/producer.py +81 -0
- mindsdb/utilities/ml_task_queue/task.py +82 -0
- mindsdb/utilities/ml_task_queue/utils.py +124 -0
- mindsdb/utilities/otel.py +72 -0
- mindsdb/utilities/profiler/__init__.py +19 -0
- mindsdb/utilities/profiler/profiler.py +144 -0
- mindsdb/utilities/ps.py +78 -0
- mindsdb/utilities/render/__init__.py +0 -0
- mindsdb/utilities/render/sqlalchemy_render.py +831 -0
- mindsdb/utilities/security.py +54 -0
- mindsdb/utilities/sentry.py +46 -0
- mindsdb/utilities/telemetry.py +44 -0
- mindsdb/utilities/wizards.py +49 -0
- MindsDB-1.3.1.dist-info/LICENSE +0 -21
- MindsDB-1.3.1.dist-info/METADATA +0 -112
- MindsDB-1.3.1.dist-info/RECORD +0 -55
- mindsdb/config/__init__.py +0 -32
- mindsdb/config/helpers.py +0 -21
- mindsdb/external_libs/stats.py +0 -61
- mindsdb/libs/__init__.py +0 -6
- mindsdb/libs/backends/lightwood.py +0 -180
- mindsdb/libs/backends/ludwig.py +0 -456
- mindsdb/libs/constants/mindsdb.py +0 -81
- mindsdb/libs/controllers/predictor.py +0 -583
- mindsdb/libs/controllers/transaction.py +0 -254
- mindsdb/libs/data_sources/file_ds.py +0 -196
- mindsdb/libs/data_types/data_source.py +0 -59
- mindsdb/libs/data_types/mindsdb_logger.py +0 -127
- mindsdb/libs/data_types/probability_evaluation.py +0 -56
- mindsdb/libs/data_types/transaction_data.py +0 -15
- mindsdb/libs/data_types/transaction_output_data.py +0 -29
- mindsdb/libs/data_types/transaction_output_row.py +0 -35
- mindsdb/libs/helpers/explain_prediction.py +0 -114
- mindsdb/libs/helpers/file_helpers.py +0 -66
- mindsdb/libs/helpers/general_helpers.py +0 -276
- mindsdb/libs/helpers/multi_data_source.py +0 -28
- mindsdb/libs/helpers/parser.py +0 -161
- mindsdb/libs/helpers/probabilistic_validator.py +0 -198
- mindsdb/libs/helpers/sqlite_helpers.py +0 -33
- mindsdb/libs/helpers/text_helpers.py +0 -79
- mindsdb/libs/helpers/train_helpers.py +0 -4
- mindsdb/libs/phases/base_module.py +0 -62
- mindsdb/libs/phases/data_extractor/data_extractor.py +0 -233
- mindsdb/libs/phases/data_transformer/data_transformer.py +0 -103
- mindsdb/libs/phases/model_analyzer/helpers/column_evaluator.py +0 -120
- mindsdb/libs/phases/model_analyzer/model_analyzer.py +0 -119
- mindsdb/libs/phases/model_interface/model_interface.py +0 -31
- mindsdb/libs/phases/stats_generator/scores.py +0 -377
- mindsdb/libs/phases/stats_generator/stats_generator.py +0 -691
- mindsdb/scraps.py +0 -133
- {MindsDB-1.3.1.dist-info → MindsDB-24.12.4.0.dist-info}/top_level.txt +0 -0
- /mindsdb/{external_libs → api}/__init__.py +0 -0
- /mindsdb/{libs/backends → api/common}/__init__.py +0 -0
- /mindsdb/{libs/constants → api/executor/data_types}/__init__.py +0 -0
- /mindsdb/{libs/controllers → api/executor/datahub/classes}/__init__.py +0 -0
- /mindsdb/{libs/data_sources → api/executor/sql_query}/__init__.py +0 -0
- /mindsdb/{libs/data_types → api/executor/utilities}/__init__.py +0 -0
- /mindsdb/{libs/helpers → api/http}/__init__.py +0 -0
- /mindsdb/{libs/phases → api/http/namespaces}/__init__.py +0 -0
- /mindsdb/{libs/phases/data_extractor → api/http/namespaces/configs}/__init__.py +0 -0
- /mindsdb/{libs/phases/data_transformer → api/mongo}/__init__.py +0 -0
- /mindsdb/{libs/phases/model_analyzer → api/mongo/utilities}/__init__.py +0 -0
- /mindsdb/{libs/phases/model_analyzer/helpers → api/mysql}/__init__.py +0 -0
- /mindsdb/{libs/phases/model_interface → api/mysql/mysql_proxy}/__init__.py +0 -0
- /mindsdb/{libs/phases/stats_generator → api/mysql/mysql_proxy/classes}/__init__.py +0 -0
|
@@ -0,0 +1,1030 @@
|
|
|
1
|
+
"""
|
|
2
|
+
*******************************************************
|
|
3
|
+
* Copyright (C) 2017 MindsDB Inc. <copyright@mindsdb.com>
|
|
4
|
+
*
|
|
5
|
+
* This file is part of MindsDB Server.
|
|
6
|
+
*
|
|
7
|
+
* MindsDB Server can not be copied and/or distributed without the express
|
|
8
|
+
* permission of MindsDB Inc
|
|
9
|
+
*******************************************************
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
# CAPABILITIES
|
|
13
|
+
# As defined in : https://dev.mysql.com/doc/dev/mysql-server/8.0.0/group__group__cs__capabilities__flags.html
|
|
14
|
+
|
|
15
|
+
MAX_PACKET_SIZE = 16777215
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# capabilities description can be found on page 67 https://books.google.ru/books?id=5TjrxYHRAwEC&printsec=frontcover#v=onepage&q&f=false
|
|
19
|
+
# https://mariadb.com/kb/en/connection/
|
|
20
|
+
# https://dev.mysql.com/doc/internals/en/capability-flags.html
|
|
21
|
+
class CAPABILITIES(object):
|
|
22
|
+
__slots__ = ()
|
|
23
|
+
CLIENT_LONG_PASSWORD = 1
|
|
24
|
+
CLIENT_FOUND_ROWS = 2
|
|
25
|
+
CLIENT_LONG_FLAG = 4
|
|
26
|
+
CLIENT_CONNECT_WITH_DB = 8
|
|
27
|
+
CLIENT_NO_SCHEMA = 16
|
|
28
|
+
CLIENT_COMPRESS = 32
|
|
29
|
+
CLIENT_ODBC = 64
|
|
30
|
+
CLIENT_LOCAL_FILES = 128
|
|
31
|
+
CLIENT_IGNORE_SPACE = 256
|
|
32
|
+
CLIENT_PROTOCOL_41 = 512
|
|
33
|
+
CLIENT_INTERACTIVE = 1024
|
|
34
|
+
CLIENT_SSL = 2048
|
|
35
|
+
CLIENT_IGNORE_SIGPIPE = 4096
|
|
36
|
+
CLIENT_TRANSACTIONS = 8192
|
|
37
|
+
CLIENT_RESERVED = 16384
|
|
38
|
+
CLIENT_RESERVED2 = 32768
|
|
39
|
+
CLIENT_MULTI_STATEMENTS = 1 << 16
|
|
40
|
+
CLIENT_MULTI_RESULTS = 1 << 17
|
|
41
|
+
CLIENT_PS_MULTI_RESULTS = 1 << 18
|
|
42
|
+
CLIENT_PLUGIN_AUTH = 1 << 19
|
|
43
|
+
CLIENT_CONNECT_ATTRS = 1 << 20
|
|
44
|
+
CLIENT_PLUGIN_AUTH_LENENC_CLIENT_DATA = 1 << 21
|
|
45
|
+
CLIENT_CAN_HANDLE_EXPIRED_PASSWORDS = 1 << 22
|
|
46
|
+
CLIENT_SESSION_TRACK = 1 << 23
|
|
47
|
+
CLIENT_DEPRECATE_EOF = 1 << 24
|
|
48
|
+
CLIENT_SSL_VERIFY_SERVER_CERT = 1 << 30
|
|
49
|
+
CLIENT_REMEMBER_OPTIONS = 1 << 31
|
|
50
|
+
CLIENT_SECURE_CONNECTION = 0x00008000
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
CAPABILITIES = CAPABILITIES()
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
# SERVER STATUS
|
|
57
|
+
class SERVER_STATUS(object):
|
|
58
|
+
__slots__ = ()
|
|
59
|
+
SERVER_STATUS_IN_TRANS = 1 # A transaction is currently active
|
|
60
|
+
SERVER_STATUS_AUTOCOMMIT = 2 # Autocommit mode is set
|
|
61
|
+
SERVER_MORE_RESULTS_EXISTS = 8 # more results exists (more packet follow)
|
|
62
|
+
SERVER_QUERY_NO_GOOD_INDEX_USED = 16
|
|
63
|
+
SERVER_QUERY_NO_INDEX_USED = 32
|
|
64
|
+
SERVER_STATUS_CURSOR_EXISTS = 64 # when using COM_STMT_FETCH, indicate that current cursor still has result (deprecated)
|
|
65
|
+
SERVER_STATUS_LAST_ROW_SENT = 128 # when using COM_STMT_FETCH, indicate that current cursor has finished to send results (deprecated)
|
|
66
|
+
SERVER_STATUS_DB_DROPPED = 1 << 8 # database has been dropped
|
|
67
|
+
SERVER_STATUS_NO_BACKSLASH_ESCAPES = 1 << 9 # current escape mode is "no backslash escape"
|
|
68
|
+
SERVER_STATUS_METADATA_CHANGED = 1 << 10 # A DDL change did have an impact on an existing PREPARE (an automatic reprepare has been executed)
|
|
69
|
+
SERVER_QUERY_WAS_SLOW = 1 << 11
|
|
70
|
+
SERVER_PS_OUT_PARAMs = 1 << 12 # this resultset contain stored procedure output parameter
|
|
71
|
+
SERVER_STATUS_IN_TRANS_READONLY = 1 << 13 # current transaction is a read-only transaction
|
|
72
|
+
SERVER_SESSION_STATE_CHANGED = 1 << 14 # session state change. see Session change type for more information
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
SERVER_STATUS = SERVER_STATUS()
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
# COMMANDS
|
|
79
|
+
class COMMANDS(object):
|
|
80
|
+
__slots__ = ()
|
|
81
|
+
COM_CHANGE_USER = int('0x11', 0)
|
|
82
|
+
COM_DEBUG = int('0x0D', 0)
|
|
83
|
+
COM_INIT_DB = int('0x02', 0)
|
|
84
|
+
COM_PING = int('0x0e', 0)
|
|
85
|
+
COM_PROCESS_KILL = int('0xC', 0)
|
|
86
|
+
COM_QUERY = int('0x03', 0)
|
|
87
|
+
COM_QUIT = int('0x01', 0)
|
|
88
|
+
COM_RESET_CONNECTION = int('0x1f', 0)
|
|
89
|
+
COM_SET_OPTION = int('0x1b', 0)
|
|
90
|
+
COM_SHUTDOWN = int('0x0a', 0)
|
|
91
|
+
COM_SLEEP = int('0x00', 0)
|
|
92
|
+
COM_STATISTICS = int('0x09', 0)
|
|
93
|
+
COM_STMT_PREPARE = int('0x16', 0)
|
|
94
|
+
COM_STMT_EXECUTE = int('0x17', 0)
|
|
95
|
+
COM_STMT_FETCH = int('0x1c', 0)
|
|
96
|
+
COM_STMT_CLOSE = int('0x19', 0)
|
|
97
|
+
COM_FIELD_LIST = int('0x04', 0) # deprecated
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
COMMANDS = COMMANDS()
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
# FIELD TYPES
|
|
104
|
+
class TYPES(object):
|
|
105
|
+
__slots__ = ()
|
|
106
|
+
MYSQL_TYPE_DECIMAL = 0
|
|
107
|
+
MYSQL_TYPE_TINY = 1
|
|
108
|
+
MYSQL_TYPE_SHORT = 2
|
|
109
|
+
MYSQL_TYPE_LONG = 3
|
|
110
|
+
MYSQL_TYPE_FLOAT = 4
|
|
111
|
+
MYSQL_TYPE_DOUBLE = 5
|
|
112
|
+
MYSQL_TYPE_NULL = 6
|
|
113
|
+
MYSQL_TYPE_TIMESTAMP = 7
|
|
114
|
+
MYSQL_TYPE_LONGLONG = 8
|
|
115
|
+
MYSQL_TYPE_INT24 = 9
|
|
116
|
+
MYSQL_TYPE_DATE = 10
|
|
117
|
+
MYSQL_TYPE_TIME = 11
|
|
118
|
+
MYSQL_TYPE_DATETIME = 12
|
|
119
|
+
MYSQL_TYPE_YEAR = 13
|
|
120
|
+
MYSQL_TYPE_NEWDATE = 14
|
|
121
|
+
MYSQL_TYPE_VARCHAR = 15
|
|
122
|
+
MYSQL_TYPE_BIT = 16
|
|
123
|
+
MYSQL_TYPE_TIMESTAMP2 = 17
|
|
124
|
+
MYSQL_TYPE_DATETIME2 = 18
|
|
125
|
+
MYSQL_TYPE_TIME2 = 19
|
|
126
|
+
MYSQL_TYPE_NEWDECIMAL = 246
|
|
127
|
+
MYSQL_TYPE_ENUM = 247
|
|
128
|
+
MYSQL_TYPE_SET = 248
|
|
129
|
+
MYSQL_TYPE_TINY_BLOB = 249
|
|
130
|
+
MYSQL_TYPE_MEDIUM_BLOB = 250
|
|
131
|
+
MYSQL_TYPE_LONG_BLOB = 251
|
|
132
|
+
MYSQL_TYPE_BLOB = 252
|
|
133
|
+
MYSQL_TYPE_VAR_STRING = 253
|
|
134
|
+
MYSQL_TYPE_STRING = 254
|
|
135
|
+
MYSQL_TYPE_GEOMETRY = 255
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
TYPES = TYPES()
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
class FIELD_FLAG(object):
|
|
142
|
+
__slots__ = ()
|
|
143
|
+
NOT_NULL = 1 # field cannot be null
|
|
144
|
+
PRIMARY_KEY = 2 # field is a primary key
|
|
145
|
+
UNIQUE_KEY = 4 # field is unique
|
|
146
|
+
MULTIPLE_KEY = 8 # field is in a multiple key
|
|
147
|
+
BLOB = 16 # is this field a Blob
|
|
148
|
+
UNSIGNED = 32 # is this field unsigned
|
|
149
|
+
ZEROFILL_FLAG = 64 # is this field a zerofill
|
|
150
|
+
BINARY_COLLATION = 128 # whether this field has a binary collation
|
|
151
|
+
ENUM = 256 # Field is an enumeration
|
|
152
|
+
AUTO_INCREMENT = 512 # field auto-increment
|
|
153
|
+
TIMESTAMP = 1024 # field is a timestamp value
|
|
154
|
+
SET = 2048 # field is a SET
|
|
155
|
+
NO_DEFAULT_VALUE_FLAG = 4096 # field doesn't have default value
|
|
156
|
+
ON_UPDATE_NOW_FLAG = 8192 # field is set to NOW on UPDATE
|
|
157
|
+
NUM_FLAG = 32768 # field is num
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
FIELD_FLAG = FIELD_FLAG()
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
# HANDSHAKE
|
|
164
|
+
|
|
165
|
+
DEFAULT_COALLITION_ID = 83
|
|
166
|
+
SERVER_STATUS_AUTOCOMMIT = 2
|
|
167
|
+
|
|
168
|
+
# NOTE real mysql-server returns by default all (capabilities 0xffff, extended 0xc1ff)
|
|
169
|
+
DEFAULT_CAPABILITIES = sum([
|
|
170
|
+
CAPABILITIES.CLIENT_LONG_PASSWORD,
|
|
171
|
+
CAPABILITIES.CLIENT_LONG_FLAG,
|
|
172
|
+
CAPABILITIES.CLIENT_CONNECT_WITH_DB,
|
|
173
|
+
CAPABILITIES.CLIENT_PROTOCOL_41,
|
|
174
|
+
CAPABILITIES.CLIENT_TRANSACTIONS,
|
|
175
|
+
CAPABILITIES.CLIENT_FOUND_ROWS,
|
|
176
|
+
CAPABILITIES.CLIENT_LOCAL_FILES,
|
|
177
|
+
CAPABILITIES.CLIENT_CONNECT_ATTRS,
|
|
178
|
+
CAPABILITIES.CLIENT_PLUGIN_AUTH,
|
|
179
|
+
CAPABILITIES.CLIENT_SSL,
|
|
180
|
+
CAPABILITIES.CLIENT_SECURE_CONNECTION,
|
|
181
|
+
CAPABILITIES.CLIENT_DEPRECATE_EOF,
|
|
182
|
+
])
|
|
183
|
+
|
|
184
|
+
DEFAULT_AUTH_METHOD = 'caching_sha2_password' # [mysql_native_password|caching_sha2_password]
|
|
185
|
+
|
|
186
|
+
FILLER_FOR_WIRESHARK_DUMP = 21
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
# Datum lenenc encoding
|
|
190
|
+
|
|
191
|
+
NULL_VALUE = b'\xFB'
|
|
192
|
+
ONE_BYTE_ENC = b'\xFA'
|
|
193
|
+
TWO_BYTE_ENC = b'\xFC'
|
|
194
|
+
THREE_BYTE_ENC = b'\xFD'
|
|
195
|
+
EIGHT_BYTE_ENC = b'\xFE'
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
# ERROR CODES
|
|
199
|
+
class ERR(object):
|
|
200
|
+
__slots__ = ()
|
|
201
|
+
ER_OLD_TEMPORALS_UPGRADED = 1880
|
|
202
|
+
ER_ONLY_FD_AND_RBR_EVENTS_ALLOWED_IN_BINLOG_STATEMENT = 1730
|
|
203
|
+
ER_ONLY_INTEGERS_ALLOWED = 1578
|
|
204
|
+
ER_ONLY_ON_RANGE_LIST_PARTITION = 1512
|
|
205
|
+
ER_OPEN_AS_READONLY = 1036
|
|
206
|
+
ER_OPERAND_COLUMNS = 1241
|
|
207
|
+
ER_OPTION_PREVENTS_STATEMENT = 1290
|
|
208
|
+
ER_ORDER_WITH_PROC = 1386
|
|
209
|
+
ER_OUT_OF_RESOURCES = 1041
|
|
210
|
+
ER_OUT_OF_SORTMEMORY = 1038
|
|
211
|
+
ER_OUTOFMEMORY = 1037
|
|
212
|
+
ER_PARSE_ERROR = 1064
|
|
213
|
+
ER_PART_STATE_ERROR = 1522
|
|
214
|
+
ER_PARTITION_CLAUSE_ON_NONPARTITIONED = 1747
|
|
215
|
+
ER_PARTITION_COLUMN_LIST_ERROR = 1653
|
|
216
|
+
ER_PARTITION_CONST_DOMAIN_ERROR = 1563
|
|
217
|
+
ER_PARTITION_ENTRY_ERROR = 1496
|
|
218
|
+
ER_PARTITION_EXCHANGE_DIFFERENT_OPTION = 1731
|
|
219
|
+
ER_PARTITION_EXCHANGE_FOREIGN_KEY = 1740
|
|
220
|
+
ER_PARTITION_EXCHANGE_PART_TABLE = 1732
|
|
221
|
+
ER_PARTITION_EXCHANGE_TEMP_TABLE = 1733
|
|
222
|
+
ER_PARTITION_FIELDS_TOO_LONG = 1660
|
|
223
|
+
ER_PARTITION_FUNC_NOT_ALLOWED_ERROR = 1491
|
|
224
|
+
ER_PARTITION_FUNCTION_FAILURE = 1521
|
|
225
|
+
ER_PARTITION_FUNCTION_IS_NOT_ALLOWED = 1564
|
|
226
|
+
ER_PARTITION_INSTEAD_OF_SUBPARTITION = 1734
|
|
227
|
+
ER_PARTITION_MAXVALUE_ERROR = 1481
|
|
228
|
+
ER_PARTITION_MERGE_ERROR = 1572
|
|
229
|
+
ER_PARTITION_MGMT_ON_NONPARTITIONED = 1505
|
|
230
|
+
ER_PARTITION_NAME = 1633
|
|
231
|
+
ER_PARTITION_NO_TEMPORARY = 1562
|
|
232
|
+
ER_PARTITION_NOT_DEFINED_ERROR = 1498
|
|
233
|
+
ER_PARTITION_REQUIRES_VALUES_ERROR = 1479
|
|
234
|
+
ER_PARTITION_SUBPART_MIX_ERROR = 1483
|
|
235
|
+
ER_PARTITION_SUBPARTITION_ERROR = 1482
|
|
236
|
+
ER_PARTITION_WRONG_NO_PART_ERROR = 1484
|
|
237
|
+
ER_PARTITION_WRONG_NO_SUBPART_ERROR = 1485
|
|
238
|
+
ER_PARTITION_WRONG_VALUES_ERROR = 1480
|
|
239
|
+
ER_PARTITIONS_MUST_BE_DEFINED_ERROR = 1492
|
|
240
|
+
ER_PASSWD_LENGTH = 1372
|
|
241
|
+
ER_PASSWORD_ANONYMOUS_USER = 1131
|
|
242
|
+
ER_PASSWORD_FORMAT = 1827
|
|
243
|
+
ER_PASSWORD_NO_MATCH = 1133
|
|
244
|
+
ER_PASSWORD_NOT_ALLOWED = 1132
|
|
245
|
+
ER_PATH_LENGTH = 1680
|
|
246
|
+
ER_PLUGIN_CANNOT_BE_UNINSTALLED = 1883
|
|
247
|
+
ER_PLUGIN_IS_NOT_LOADED = 1524
|
|
248
|
+
ER_PLUGIN_IS_PERMANENT = 1702
|
|
249
|
+
ER_PLUGIN_NO_INSTALL = 1721
|
|
250
|
+
ER_PLUGIN_NO_UNINSTALL = 1720
|
|
251
|
+
ER_PRIMARY_CANT_HAVE_NULL = 1171
|
|
252
|
+
ER_PROC_AUTO_GRANT_FAIL = 1404
|
|
253
|
+
ER_PROC_AUTO_REVOKE_FAIL = 1405
|
|
254
|
+
ER_PROCACCESS_DENIED_ERROR = 1370
|
|
255
|
+
ER_PS_MANY_PARAM = 1390
|
|
256
|
+
ER_PS_NO_RECURSION = 1444
|
|
257
|
+
ER_QUERY_CACHE_DISABLED = 1651
|
|
258
|
+
ER_QUERY_INTERRUPTED = 1317
|
|
259
|
+
ER_QUERY_ON_FOREIGN_DATA_SOURCE = 1430
|
|
260
|
+
ER_QUERY_ON_MASTER = 1219
|
|
261
|
+
ER_RANGE_NOT_INCREASING_ERROR = 1493
|
|
262
|
+
ER_RBR_NOT_AVAILABLE = 1574
|
|
263
|
+
ER_READ_ONLY_MODE = 1836
|
|
264
|
+
ER_READ_ONLY_TRANSACTION = 1207
|
|
265
|
+
ER_READY = 1076
|
|
266
|
+
ER_RECORD_FILE_FULL = 1114
|
|
267
|
+
ER_REGEXP_ERROR = 1139
|
|
268
|
+
ER_RELAY_LOG_FAIL = 1371
|
|
269
|
+
ER_RELAY_LOG_INIT = 1380
|
|
270
|
+
ER_REMOVED_SPACES = 1466
|
|
271
|
+
ER_RENAMED_NAME = 1636
|
|
272
|
+
ER_REORG_HASH_ONLY_ON_SAME_N = 1510
|
|
273
|
+
ER_REORG_NO_PARAM_ERROR = 1511
|
|
274
|
+
ER_REORG_OUTSIDE_RANGE = 1520
|
|
275
|
+
ER_REORG_PARTITION_NOT_EXIST = 1516
|
|
276
|
+
ER_REQUIRES_PRIMARY_KEY = 1173
|
|
277
|
+
ER_RESERVED_SYNTAX = 1382
|
|
278
|
+
ER_RESIGNAL_WITHOUT_ACTIVE_HANDLER = 1645
|
|
279
|
+
ER_REVOKE_GRANTS = 1269
|
|
280
|
+
ER_ROW_DOES_NOT_MATCH_GIVEN_PARTITION_SET = 1748
|
|
281
|
+
ER_ROW_DOES_NOT_MATCH_PARTITION = 1737
|
|
282
|
+
ER_ROW_IN_WRONG_PARTITION = 1863
|
|
283
|
+
ER_ROW_IS_REFERENCED = 1217
|
|
284
|
+
ER_ROW_IS_REFERENCED_2 = 1451
|
|
285
|
+
ER_ROW_SINGLE_PARTITION_FIELD_ERROR = 1658
|
|
286
|
+
ER_RPL_INFO_DATA_TOO_LONG = 1742
|
|
287
|
+
ER_SAME_NAME_PARTITION = 1517
|
|
288
|
+
ER_SAME_NAME_PARTITION_FIELD = 1652
|
|
289
|
+
ER_SELECT_REDUCED = 1249
|
|
290
|
+
ER_SERVER_IS_IN_SECURE_AUTH_MODE = 1275
|
|
291
|
+
ER_SERVER_SHUTDOWN = 1053
|
|
292
|
+
ER_SET_CONSTANTS_ONLY = 1204
|
|
293
|
+
ER_SET_PASSWORD_AUTH_PLUGIN = 1699
|
|
294
|
+
ER_SET_STATEMENT_CANNOT_INVOKE_FUNCTION = 1769
|
|
295
|
+
ER_SHUTDOWN_COMPLETE = 1079
|
|
296
|
+
ER_SIGNAL_BAD_CONDITION_TYPE = 1646
|
|
297
|
+
ER_SIGNAL_EXCEPTION = 1644
|
|
298
|
+
ER_SIGNAL_NOT_FOUND = 1643
|
|
299
|
+
ER_SIGNAL_WARN = 1642
|
|
300
|
+
ER_SIZE_OVERFLOW_ERROR = 1532
|
|
301
|
+
ER_SKIPPING_LOGGED_TRANSACTION = 1771
|
|
302
|
+
ER_SLAVE_CANT_CREATE_CONVERSION = 1678
|
|
303
|
+
ER_SLAVE_CONFIGURATION = 1794
|
|
304
|
+
ER_SLAVE_CONVERSION_FAILED = 1677
|
|
305
|
+
ER_SLAVE_CORRUPT_EVENT = 1610
|
|
306
|
+
ER_SLAVE_CREATE_EVENT_FAILURE = 1596
|
|
307
|
+
ER_SLAVE_FATAL_ERROR = 1593
|
|
308
|
+
ER_SLAVE_HAS_MORE_GTIDS_THAN_MASTER = 1885
|
|
309
|
+
ER_SLAVE_HEARTBEAT_FAILURE = 1623
|
|
310
|
+
ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE = 1624
|
|
311
|
+
ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE_MAX = 1704
|
|
312
|
+
ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE_MIN = 1703
|
|
313
|
+
ER_SLAVE_IGNORE_SERVER_IDS = 1650
|
|
314
|
+
ER_SLAVE_IGNORED_SSL_PARAMS = 1274
|
|
315
|
+
ER_SLAVE_IGNORED_TABLE = 1237
|
|
316
|
+
ER_SLAVE_INCIDENT = 1590
|
|
317
|
+
ER_SLAVE_MASTER_COM_FAILURE = 1597
|
|
318
|
+
ER_SLAVE_MI_INIT_REPOSITORY = 1871
|
|
319
|
+
ER_SLAVE_MUST_STOP = 1198
|
|
320
|
+
ER_SLAVE_NOT_RUNNING = 1199
|
|
321
|
+
ER_SLAVE_RELAY_LOG_READ_FAILURE = 1594
|
|
322
|
+
ER_SLAVE_RELAY_LOG_WRITE_FAILURE = 1595
|
|
323
|
+
ER_SLAVE_RLI_INIT_REPOSITORY = 1872
|
|
324
|
+
ER_SLAVE_SILENT_RETRY_TRANSACTION = 1806
|
|
325
|
+
ER_SLAVE_THREAD = 1202
|
|
326
|
+
ER_SLAVE_WAS_NOT_RUNNING = 1255
|
|
327
|
+
ER_SLAVE_WAS_RUNNING = 1254
|
|
328
|
+
ER_SP_ALREADY_EXISTS = 1304
|
|
329
|
+
ER_SP_BAD_CURSOR_QUERY = 1322
|
|
330
|
+
ER_SP_BAD_CURSOR_SELECT = 1323
|
|
331
|
+
ER_SP_BAD_SQLSTATE = 1407
|
|
332
|
+
ER_SP_BAD_VAR_SHADOW = 1453
|
|
333
|
+
ER_SP_BADRETURN = 1313
|
|
334
|
+
ER_SP_BADSELECT = 1312
|
|
335
|
+
ER_SP_BADSTATEMENT = 1314
|
|
336
|
+
ER_SP_CANT_ALTER = 1334
|
|
337
|
+
ER_SP_CANT_SET_AUTOCOMMIT = 1445
|
|
338
|
+
ER_SP_CASE_NOT_FOUND = 1339
|
|
339
|
+
ER_SP_COND_MISMATCH = 1319
|
|
340
|
+
ER_SP_CURSOR_AFTER_HANDLER = 1338
|
|
341
|
+
ER_SP_CURSOR_ALREADY_OPEN = 1325
|
|
342
|
+
ER_SP_CURSOR_MISMATCH = 1324
|
|
343
|
+
ER_SP_CURSOR_NOT_OPEN = 1326
|
|
344
|
+
ER_SP_DOES_NOT_EXIST = 1305
|
|
345
|
+
ER_SP_DROP_FAILED = 1306
|
|
346
|
+
ER_SP_DUP_COND = 1332
|
|
347
|
+
ER_SP_DUP_CURS = 1333
|
|
348
|
+
ER_SP_DUP_HANDLER = 1413
|
|
349
|
+
ER_SP_DUP_PARAM = 1330
|
|
350
|
+
ER_SP_DUP_VAR = 1331
|
|
351
|
+
ER_SP_FETCH_NO_DATA = 1329
|
|
352
|
+
ER_SP_GOTO_IN_HNDLR = 1358
|
|
353
|
+
ER_SP_LABEL_MISMATCH = 1310
|
|
354
|
+
ER_SP_LABEL_REDEFINE = 1309
|
|
355
|
+
ER_SP_LILABEL_MISMATCH = 1308
|
|
356
|
+
ER_SP_NO_AGGREGATE = 1460
|
|
357
|
+
ER_SP_NO_DROP_SP = 1357
|
|
358
|
+
ER_SP_NO_RECURSION = 1424
|
|
359
|
+
ER_SP_NO_RECURSIVE_CREATE = 1303
|
|
360
|
+
ER_SP_NO_RETSET = 1415
|
|
361
|
+
ER_SP_NORETURN = 1320
|
|
362
|
+
ER_SP_NORETURNEND = 1321
|
|
363
|
+
ER_SP_NOT_VAR_ARG = 1414
|
|
364
|
+
ER_SP_PROC_TABLE_CORRUPT = 1457
|
|
365
|
+
ER_SP_RECURSION_LIMIT = 1456
|
|
366
|
+
ER_SP_STORE_FAILED = 1307
|
|
367
|
+
ER_SP_SUBSELECT_NYI = 1335
|
|
368
|
+
ER_SP_UNDECLARED_VAR = 1327
|
|
369
|
+
ER_SP_UNINIT_VAR = 1311
|
|
370
|
+
ER_SP_VARCOND_AFTER_CURSHNDLR = 1337
|
|
371
|
+
ER_SP_WRONG_NAME = 1458
|
|
372
|
+
ER_SP_WRONG_NO_OF_ARGS = 1318
|
|
373
|
+
ER_SP_WRONG_NO_OF_FETCH_ARGS = 1328
|
|
374
|
+
ER_SPATIAL_CANT_HAVE_NULL = 1252
|
|
375
|
+
ER_SPATIAL_MUST_HAVE_GEOM_COL = 1687
|
|
376
|
+
ER_SPECIFIC_ACCESS_DENIED_ERROR = 1227
|
|
377
|
+
ER_SQL_SLAVE_SKIP_COUNTER_NOT_SETTABLE_IN_GTID_MODE = 1858
|
|
378
|
+
ER_SQLTHREAD_WITH_SECURE_SLAVE = 1763
|
|
379
|
+
ER_SR_INVALID_CREATION_CTX = 1601
|
|
380
|
+
ER_STACK_OVERRUN = 1119
|
|
381
|
+
ER_STACK_OVERRUN_NEED_MORE = 1436
|
|
382
|
+
ER_STARTUP = 1408
|
|
383
|
+
ER_STMT_CACHE_FULL = 1705
|
|
384
|
+
ER_STMT_HAS_NO_OPEN_CURSOR = 1421
|
|
385
|
+
ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG = 1336
|
|
386
|
+
ER_STOP_SLAVE_IO_THREAD_TIMEOUT = 1876
|
|
387
|
+
ER_STOP_SLAVE_SQL_THREAD_TIMEOUT = 1875
|
|
388
|
+
ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT = 1560
|
|
389
|
+
ER_STORED_FUNCTION_PREVENTS_SWITCH_SQL_LOG_BIN = 1695
|
|
390
|
+
ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_DIRECT = 1686
|
|
391
|
+
ER_SUBPARTITION_ERROR = 1500
|
|
392
|
+
ER_SUBPARTITION_NAME = 1634
|
|
393
|
+
ER_SUBQUERY_NO_1_ROW = 1242
|
|
394
|
+
ER_SYNTAX_ERROR = 1149
|
|
395
|
+
ER_TABLE_CANT_HANDLE_AUTO_INCREMENT = 1164
|
|
396
|
+
ER_TABLE_CANT_HANDLE_BLOB = 1163
|
|
397
|
+
ER_TABLE_CANT_HANDLE_FT = 1214
|
|
398
|
+
ER_TABLE_CANT_HANDLE_SPKEYS = 1464
|
|
399
|
+
ER_TABLE_CORRUPT = 1877
|
|
400
|
+
ER_TABLE_DEF_CHANGED = 1412
|
|
401
|
+
ER_TABLE_EXISTS_ERROR = 1050
|
|
402
|
+
ER_TABLE_HAS_NO_FT = 1764
|
|
403
|
+
ER_TABLE_IN_FK_CHECK = 1725
|
|
404
|
+
ER_TABLE_IN_SYSTEM_TABLESPACE = 1809
|
|
405
|
+
ER_TABLE_MUST_HAVE_COLUMNS = 1113
|
|
406
|
+
ER_TABLE_NAME = 1632
|
|
407
|
+
ER_TABLE_NEEDS_REBUILD = 1707
|
|
408
|
+
ER_TABLE_NEEDS_UPGRADE = 1459
|
|
409
|
+
ER_TABLE_NOT_LOCKED = 1100
|
|
410
|
+
ER_TABLE_NOT_LOCKED_FOR_WRITE = 1099
|
|
411
|
+
ER_TABLE_SCHEMA_MISMATCH = 1808
|
|
412
|
+
ER_TABLEACCESS_DENIED_ERROR = 1142
|
|
413
|
+
ER_TABLENAME_NOT_ALLOWED_HERE = 1250
|
|
414
|
+
ER_TABLES_DIFFERENT_METADATA = 1736
|
|
415
|
+
ER_TABLESPACE_AUTO_EXTEND_ERROR = 1530
|
|
416
|
+
ER_TABLESPACE_DISCARDED = 1814
|
|
417
|
+
ER_TABLESPACE_EXISTS = 1813
|
|
418
|
+
ER_TABLESPACE_MISSING = 1812
|
|
419
|
+
ER_TEMP_FILE_WRITE_FAILURE = 1878
|
|
420
|
+
ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR = 1559
|
|
421
|
+
ER_TEMPORARY_NAME = 1635
|
|
422
|
+
ER_TEXTFILE_NOT_READABLE = 1085
|
|
423
|
+
ER_TOO_BIG_DISPLAYWIDTH = 1439
|
|
424
|
+
ER_TOO_BIG_FIELDLENGTH = 1074
|
|
425
|
+
ER_TOO_BIG_FOR_UNCOMPRESS = 1256
|
|
426
|
+
ER_TOO_BIG_PRECISION = 1426
|
|
427
|
+
ER_TOO_BIG_ROWSIZE = 1118
|
|
428
|
+
ER_TOO_BIG_SCALE = 1425
|
|
429
|
+
ER_TOO_BIG_SELECT = 1104
|
|
430
|
+
ER_TOO_BIG_SET = 1097
|
|
431
|
+
ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT = 1473
|
|
432
|
+
ER_TOO_LONG_BODY = 1437
|
|
433
|
+
ER_TOO_LONG_FIELD_COMMENT = 1629
|
|
434
|
+
ER_TOO_LONG_IDENT = 1059
|
|
435
|
+
ER_TOO_LONG_INDEX_COMMENT = 1688
|
|
436
|
+
ER_TOO_LONG_KEY = 1071
|
|
437
|
+
ER_TOO_LONG_STRING = 1162
|
|
438
|
+
ER_TOO_LONG_TABLE_COMMENT = 1628
|
|
439
|
+
ER_TOO_LONG_TABLE_PARTITION_COMMENT = 1793
|
|
440
|
+
ER_TOO_MANY_CONCURRENT_TRXS = 1637
|
|
441
|
+
ER_TOO_MANY_DELAYED_THREADS = 1151
|
|
442
|
+
ER_TOO_MANY_FIELDS = 1117
|
|
443
|
+
ER_TOO_MANY_KEY_PARTS = 1070
|
|
444
|
+
ER_TOO_MANY_KEYS = 1069
|
|
445
|
+
ER_TOO_MANY_PARTITION_FUNC_FIELDS_ERROR = 1655
|
|
446
|
+
ER_TOO_MANY_PARTITIONS_ERROR = 1499
|
|
447
|
+
ER_TOO_MANY_ROWS = 1172
|
|
448
|
+
ER_TOO_MANY_TABLES = 1116
|
|
449
|
+
ER_TOO_MANY_USER_CONNECTIONS = 1203
|
|
450
|
+
ER_TOO_MANY_VALUES_ERROR = 1657
|
|
451
|
+
ER_TOO_MUCH_AUTO_TIMESTAMP_COLS = 1293
|
|
452
|
+
ER_TRANS_CACHE_FULL = 1197
|
|
453
|
+
ER_TRG_ALREADY_EXISTS = 1359
|
|
454
|
+
ER_TRG_CANT_CHANGE_ROW = 1362
|
|
455
|
+
ER_TRG_CANT_OPEN_TABLE = 1606
|
|
456
|
+
ER_TRG_CORRUPTED_FILE = 1602
|
|
457
|
+
ER_TRG_DOES_NOT_EXIST = 1360
|
|
458
|
+
ER_TRG_IN_WRONG_SCHEMA = 1435
|
|
459
|
+
ER_TRG_INVALID_CREATION_CTX = 1604
|
|
460
|
+
ER_TRG_NO_CREATION_CTX = 1603
|
|
461
|
+
ER_TRG_NO_DEFINER = 1454
|
|
462
|
+
ER_TRG_NO_SUCH_ROW_IN_TRG = 1363
|
|
463
|
+
ER_TRG_ON_VIEW_OR_TEMP_TABLE = 1361
|
|
464
|
+
ER_TRUNCATE_ILLEGAL_FK = 1701
|
|
465
|
+
ER_TRUNCATED_WRONG_VALUE = 1292
|
|
466
|
+
ER_TRUNCATED_WRONG_VALUE_FOR_FIELD = 1366
|
|
467
|
+
ER_UDF_EXISTS = 1125
|
|
468
|
+
ER_UDF_NO_PATHS = 1124
|
|
469
|
+
ER_UNDO_RECORD_TOO_BIG = 1713
|
|
470
|
+
ER_UNEXPECTED_EOF = 1039
|
|
471
|
+
ER_UNION_TABLES_IN_DIFFERENT_DIR = 1212
|
|
472
|
+
ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF = 1503
|
|
473
|
+
ER_UNKNOWN_ALTER_ALGORITHM = 1800
|
|
474
|
+
ER_UNKNOWN_ALTER_LOCK = 1801
|
|
475
|
+
ER_UNKNOWN_CHARACTER_SET = 1115
|
|
476
|
+
ER_UNKNOWN_COLLATION = 1273
|
|
477
|
+
ER_UNKNOWN_COM_ERROR = 1047
|
|
478
|
+
ER_UNKNOWN_ERROR = 1105
|
|
479
|
+
ER_UNKNOWN_EXPLAIN_FORMAT = 1791
|
|
480
|
+
ER_UNKNOWN_KEY_CACHE = 1284
|
|
481
|
+
ER_UNKNOWN_LOCALE = 1649
|
|
482
|
+
ER_UNKNOWN_PARTITION = 1735
|
|
483
|
+
ER_UNKNOWN_PROCEDURE = 1106
|
|
484
|
+
ER_UNKNOWN_STMT_HANDLER = 1243
|
|
485
|
+
ER_UNKNOWN_STORAGE_ENGINE = 1286
|
|
486
|
+
ER_UNKNOWN_SYSTEM_VARIABLE = 1193
|
|
487
|
+
ER_UNKNOWN_TABLE = 1109
|
|
488
|
+
ER_UNKNOWN_TARGET_BINLOG = 1373
|
|
489
|
+
ER_UNKNOWN_TIME_ZONE = 1298
|
|
490
|
+
ER_UNSUPORTED_LOG_ENGINE = 1579
|
|
491
|
+
ER_UNSUPPORTED_ENGINE = 1726
|
|
492
|
+
ER_UNSUPPORTED_EXTENSION = 1112
|
|
493
|
+
ER_UNSUPPORTED_PS = 1295
|
|
494
|
+
ER_UNTIL_COND_IGNORED = 1279
|
|
495
|
+
ER_UPDATE_INF = 1134
|
|
496
|
+
ER_UPDATE_LOG_DEPRECATED_IGNORED = 1315
|
|
497
|
+
ER_UPDATE_LOG_DEPRECATED_TRANSLATED = 1316
|
|
498
|
+
ER_UPDATE_TABLE_USED = 1093
|
|
499
|
+
ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE = 1175
|
|
500
|
+
ER_USER_LIMIT_REACHED = 1226
|
|
501
|
+
ER_USERNAME = 1468
|
|
502
|
+
ER_VALUES_IS_NOT_INT_TYPE_ERROR = 1697
|
|
503
|
+
ER_VAR_CANT_BE_READ = 1233
|
|
504
|
+
ER_VARIABLE_IS_NOT_STRUCT = 1272
|
|
505
|
+
ER_VARIABLE_IS_READONLY = 1621
|
|
506
|
+
ER_VARIABLE_NOT_SETTABLE_IN_SF_OR_TRIGGER = 1765
|
|
507
|
+
ER_VARIABLE_NOT_SETTABLE_IN_SP = 1838
|
|
508
|
+
ER_VARIABLE_NOT_SETTABLE_IN_TRANSACTION = 1766
|
|
509
|
+
ER_VIEW_CHECK_FAILED = 1369
|
|
510
|
+
ER_VIEW_CHECKSUM = 1392
|
|
511
|
+
ER_VIEW_DELETE_MERGE_VIEW = 1395
|
|
512
|
+
ER_VIEW_FRM_NO_USER = 1447
|
|
513
|
+
ER_VIEW_INVALID = 1356
|
|
514
|
+
ER_VIEW_INVALID_CREATION_CTX = 1600
|
|
515
|
+
ER_VIEW_MULTIUPDATE = 1393
|
|
516
|
+
ER_VIEW_NO_CREATION_CTX = 1599
|
|
517
|
+
ER_VIEW_NO_EXPLAIN = 1345
|
|
518
|
+
ER_VIEW_NO_INSERT_FIELD_LIST = 1394
|
|
519
|
+
ER_VIEW_NONUPD_CHECK = 1368
|
|
520
|
+
ER_VIEW_OTHER_USER = 1448
|
|
521
|
+
ER_VIEW_PREVENT_UPDATE = 1443
|
|
522
|
+
ER_VIEW_RECURSIVE = 1462
|
|
523
|
+
ER_VIEW_SELECT_CLAUSE = 1350
|
|
524
|
+
ER_VIEW_SELECT_DERIVED = 1349
|
|
525
|
+
ER_VIEW_SELECT_TMPTABLE = 1352
|
|
526
|
+
ER_VIEW_SELECT_VARIABLE = 1351
|
|
527
|
+
ER_VIEW_WRONG_LIST = 1353
|
|
528
|
+
ER_WARN_ALLOWED_PACKET_OVERFLOWED = 1301
|
|
529
|
+
ER_WARN_CANT_DROP_DEFAULT_KEYCACHE = 1438
|
|
530
|
+
ER_WARN_DATA_OUT_OF_RANGE = 1264
|
|
531
|
+
ER_WARN_DEPRECATED_SYNTAX = 1287
|
|
532
|
+
ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT = 1681
|
|
533
|
+
ER_WARN_DEPRECATED_SYNTAX_WITH_VER = 1554
|
|
534
|
+
ER_WARN_ENGINE_TRANSACTION_ROLLBACK = 1622
|
|
535
|
+
ER_WARN_FIELD_RESOLVED = 1276
|
|
536
|
+
ER_WARN_HOSTNAME_WONT_WORK = 1285
|
|
537
|
+
ER_WARN_I_S_SKIPPED_TABLE = 1684
|
|
538
|
+
ER_WARN_INDEX_NOT_APPLICABLE = 1739
|
|
539
|
+
ER_WARN_INVALID_TIMESTAMP = 1299
|
|
540
|
+
ER_WARN_NULL_TO_NOTNULL = 1263
|
|
541
|
+
ER_WARN_PURGE_LOG_IN_USE = 1867
|
|
542
|
+
ER_WARN_PURGE_LOG_IS_ACTIVE = 1868
|
|
543
|
+
ER_WARN_QC_RESIZE = 1282
|
|
544
|
+
ER_WARN_TOO_FEW_RECORDS = 1261
|
|
545
|
+
ER_WARN_TOO_MANY_RECORDS = 1262
|
|
546
|
+
ER_WARN_USING_OTHER_HANDLER = 1266
|
|
547
|
+
ER_WARN_VIEW_MERGE = 1354
|
|
548
|
+
ER_WARN_VIEW_WITHOUT_KEY = 1355
|
|
549
|
+
ER_WARNING_NOT_COMPLETE_ROLLBACK = 1196
|
|
550
|
+
ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_CREATED_TEMP_TABLE = 1751
|
|
551
|
+
ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_DROPPED_TEMP_TABLE = 1752
|
|
552
|
+
ER_WRONG_ARGUMENTS = 1210
|
|
553
|
+
ER_WRONG_AUTO_KEY = 1075
|
|
554
|
+
ER_WRONG_COLUMN_NAME = 1166
|
|
555
|
+
ER_WRONG_DB_NAME = 1102
|
|
556
|
+
ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR = 1486
|
|
557
|
+
ER_WRONG_FIELD_SPEC = 1063
|
|
558
|
+
ER_WRONG_FIELD_TERMINATORS = 1083
|
|
559
|
+
ER_WRONG_FIELD_WITH_GROUP = 1055
|
|
560
|
+
ER_WRONG_FK_DEF = 1239
|
|
561
|
+
ER_WRONG_GROUP_FIELD = 1056
|
|
562
|
+
ER_WRONG_KEY_COLUMN = 1167
|
|
563
|
+
ER_WRONG_LOCK_OF_SYSTEM_TABLE = 1428
|
|
564
|
+
ER_WRONG_MAGIC = 1389
|
|
565
|
+
ER_WRONG_MRG_TABLE = 1168
|
|
566
|
+
ER_WRONG_NAME_FOR_CATALOG = 1281
|
|
567
|
+
ER_WRONG_NAME_FOR_INDEX = 1280
|
|
568
|
+
ER_WRONG_NATIVE_TABLE_STRUCTURE = 1682
|
|
569
|
+
ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT = 1222
|
|
570
|
+
ER_WRONG_OBJECT = 1347
|
|
571
|
+
ER_WRONG_OUTER_JOIN = 1120
|
|
572
|
+
ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT = 1582
|
|
573
|
+
ER_WRONG_PARAMCOUNT_TO_PROCEDURE = 1107
|
|
574
|
+
ER_WRONG_PARAMETERS_TO_NATIVE_FCT = 1583
|
|
575
|
+
ER_WRONG_PARAMETERS_TO_PROCEDURE = 1108
|
|
576
|
+
ER_WRONG_PARAMETERS_TO_STORED_FCT = 1584
|
|
577
|
+
ER_WRONG_PARTITION_NAME = 1567
|
|
578
|
+
ER_WRONG_PERFSCHEMA_USAGE = 1683
|
|
579
|
+
ER_WRONG_SIZE_NUMBER = 1531
|
|
580
|
+
ER_WRONG_SPVAR_TYPE_IN_LIMIT = 1691
|
|
581
|
+
ER_WRONG_STRING_LENGTH = 1470
|
|
582
|
+
ER_WRONG_SUB_KEY = 1089
|
|
583
|
+
ER_WRONG_SUM_SELECT = 1057
|
|
584
|
+
ER_WRONG_TABLE_NAME = 1103
|
|
585
|
+
ER_WRONG_TYPE_COLUMN_VALUE_ERROR = 1654
|
|
586
|
+
ER_WRONG_TYPE_FOR_VAR = 1232
|
|
587
|
+
ER_WRONG_USAGE = 1221
|
|
588
|
+
ER_WRONG_VALUE = 1525
|
|
589
|
+
ER_WRONG_VALUE_COUNT = 1058
|
|
590
|
+
ER_WRONG_VALUE_COUNT_ON_ROW = 1136
|
|
591
|
+
ER_WRONG_VALUE_FOR_TYPE = 1411
|
|
592
|
+
ER_WRONG_VALUE_FOR_VAR = 1231
|
|
593
|
+
ER_WSAS_FAILED = 1383
|
|
594
|
+
ER_XA_RBDEADLOCK = 1614
|
|
595
|
+
ER_XA_RBROLLBACK = 1402
|
|
596
|
+
ER_XA_RBTIMEOUT = 1613
|
|
597
|
+
ER_XAER_DUPID = 1440
|
|
598
|
+
ER_XAER_INVAL = 1398
|
|
599
|
+
ER_XAER_NOTA = 1397
|
|
600
|
+
ER_XAER_OUTSIDE = 1400
|
|
601
|
+
ER_XAER_RMERR = 1401
|
|
602
|
+
ER_XAER_RMFAIL = 1399
|
|
603
|
+
ER_YES = 1003
|
|
604
|
+
ER_ZLIB_Z_BUF_ERROR = 1258
|
|
605
|
+
ER_ZLIB_Z_DATA_ERROR = 1259
|
|
606
|
+
ER_ZLIB_Z_MEM_ERROR = 1257
|
|
607
|
+
ER_BAD_DB_ERROR = 1049
|
|
608
|
+
ER_BAD_TABLE_ERROR = 1051
|
|
609
|
+
ER_KEY_COLUMN_DOES_NOT_EXIST = 1072
|
|
610
|
+
ER_DUP_FIELDNAME = 1060
|
|
611
|
+
ER_DB_DROP_DELETE = 1009
|
|
612
|
+
ER_NON_INSERTABLE_TABLE = 1471
|
|
613
|
+
ER_NOT_SUPPORTED_YET = 1235
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
ERR = ERR()
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
class WARN(object):
|
|
620
|
+
__slots__ = ()
|
|
621
|
+
WARN_COND_ITEM_TRUNCATED = 1647
|
|
622
|
+
WARN_DATA_TRUNCATED = 1265
|
|
623
|
+
WARN_NO_MASTER_INF = 1617
|
|
624
|
+
WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED = 1638
|
|
625
|
+
WARN_ON_BLOCKHOLE_IN_RBR = 1870
|
|
626
|
+
WARN_OPTION_BELOW_LIMIT = 1708
|
|
627
|
+
WARN_OPTION_IGNORED = 1618
|
|
628
|
+
WARN_PLUGIN_BUSY = 1620
|
|
629
|
+
WARN_PLUGIN_DELETE_BUILTIN = 1619
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
WARN = WARN()
|
|
633
|
+
|
|
634
|
+
# CHARACTER SET NUMBERS
|
|
635
|
+
|
|
636
|
+
# noqa
|
|
637
|
+
CHARSET_NUMBERS = {
|
|
638
|
+
"big5_chinese_ci": 1,
|
|
639
|
+
"latin2_czech_cs": 2,
|
|
640
|
+
"dec8_swedish_ci": 3,
|
|
641
|
+
"cp850_general_ci": 4,
|
|
642
|
+
"latin1_german1_ci": 5,
|
|
643
|
+
"hp8_english_ci": 6,
|
|
644
|
+
"koi8r_general_ci": 7,
|
|
645
|
+
"latin1_swedish_ci": 8,
|
|
646
|
+
"latin2_general_ci": 9,
|
|
647
|
+
"swe7_swedish_ci": 10,
|
|
648
|
+
"ascii_general_ci": 11,
|
|
649
|
+
"ujis_japanese_ci": 12,
|
|
650
|
+
"sjis_japanese_ci": 13,
|
|
651
|
+
"cp1251_bulgarian_ci": 14,
|
|
652
|
+
"latin1_danish_ci": 15,
|
|
653
|
+
"hebrew_general_ci": 16,
|
|
654
|
+
"tis620_thai_ci": 18,
|
|
655
|
+
"euckr_korean_ci": 19,
|
|
656
|
+
"latin7_estonian_cs": 20,
|
|
657
|
+
"latin2_hungarian_ci": 21,
|
|
658
|
+
"koi8u_general_ci": 22,
|
|
659
|
+
"cp1251_ukrainian_ci": 23,
|
|
660
|
+
"gb2312_chinese_ci": 24,
|
|
661
|
+
"greek_general_ci": 25,
|
|
662
|
+
"cp1250_general_ci": 26,
|
|
663
|
+
"latin2_croatian_ci": 27,
|
|
664
|
+
"gbk_chinese_ci": 28,
|
|
665
|
+
"cp1257_lithuanian_ci": 29,
|
|
666
|
+
"latin5_turkish_ci": 30,
|
|
667
|
+
"latin1_german2_ci": 31,
|
|
668
|
+
"armscii8_general_ci": 32,
|
|
669
|
+
"utf8_general_ci": 33,
|
|
670
|
+
"cp1250_czech_cs": 34,
|
|
671
|
+
"ucs2_general_ci": 35,
|
|
672
|
+
"cp866_general_ci": 36,
|
|
673
|
+
"keybcs2_general_ci": 37,
|
|
674
|
+
"macce_general_ci": 38,
|
|
675
|
+
"macroman_general_ci": 39,
|
|
676
|
+
"cp852_general_ci": 40,
|
|
677
|
+
"latin7_general_ci": 41,
|
|
678
|
+
"latin7_general_cs": 42,
|
|
679
|
+
"macce_bin": 43,
|
|
680
|
+
"cp1250_croatian_ci": 44,
|
|
681
|
+
"utf8mb4_general_ci": 45,
|
|
682
|
+
"utf8mb4_bin": 46,
|
|
683
|
+
"latin1_bin": 47,
|
|
684
|
+
"latin1_general_ci": 48,
|
|
685
|
+
"latin1_general_cs": 49,
|
|
686
|
+
"cp1251_bin": 50,
|
|
687
|
+
"cp1251_general_ci": 51,
|
|
688
|
+
"cp1251_general_cs": 52,
|
|
689
|
+
"macroman_bin": 53,
|
|
690
|
+
"utf16_general_ci": 54,
|
|
691
|
+
"utf16_bin": 55,
|
|
692
|
+
"utf16le_general_ci": 56,
|
|
693
|
+
"cp1256_general_ci": 57,
|
|
694
|
+
"cp1257_bin": 58,
|
|
695
|
+
"cp1257_general_ci": 59,
|
|
696
|
+
"utf32_general_ci": 60,
|
|
697
|
+
"utf32_bin": 61,
|
|
698
|
+
"utf16le_bin": 62,
|
|
699
|
+
"binary": 63,
|
|
700
|
+
"armscii8_bin": 64,
|
|
701
|
+
"ascii_bin": 65,
|
|
702
|
+
"cp1250_bin": 66,
|
|
703
|
+
"cp1256_bin": 67,
|
|
704
|
+
"cp866_bin": 68,
|
|
705
|
+
"dec8_bin": 69,
|
|
706
|
+
"greek_bin": 70,
|
|
707
|
+
"hebrew_bin": 71,
|
|
708
|
+
"hp8_bin": 72,
|
|
709
|
+
"keybcs2_bin": 73,
|
|
710
|
+
"koi8r_bin": 74,
|
|
711
|
+
"koi8u_bin": 75,
|
|
712
|
+
"latin2_bin": 77,
|
|
713
|
+
"latin5_bin": 78,
|
|
714
|
+
"latin7_bin": 79,
|
|
715
|
+
"cp850_bin": 80,
|
|
716
|
+
"cp852_bin": 81,
|
|
717
|
+
"swe7_bin": 82,
|
|
718
|
+
"utf8_bin": 83,
|
|
719
|
+
"big5_bin": 84,
|
|
720
|
+
"euckr_bin": 85,
|
|
721
|
+
"gb2312_bin": 86,
|
|
722
|
+
"gbk_bin": 87,
|
|
723
|
+
"sjis_bin": 88,
|
|
724
|
+
"tis620_bin": 89,
|
|
725
|
+
"ucs2_bin": 90,
|
|
726
|
+
"ujis_bin": 91,
|
|
727
|
+
"geostd8_general_ci": 92,
|
|
728
|
+
"geostd8_bin": 93,
|
|
729
|
+
"latin1_spanish_ci": 94,
|
|
730
|
+
"cp932_japanese_ci": 95,
|
|
731
|
+
"cp932_bin": 96,
|
|
732
|
+
"eucjpms_japanese_ci": 97,
|
|
733
|
+
"eucjpms_bin": 98,
|
|
734
|
+
"cp1250_polish_ci": 99,
|
|
735
|
+
"utf16_unicode_ci": 101,
|
|
736
|
+
"utf16_icelandic_ci": 102,
|
|
737
|
+
"utf16_latvian_ci": 103,
|
|
738
|
+
"utf16_romanian_ci": 104,
|
|
739
|
+
"utf16_slovenian_ci": 105,
|
|
740
|
+
"utf16_polish_ci": 106,
|
|
741
|
+
"utf16_estonian_ci": 107,
|
|
742
|
+
"utf16_spanish_ci": 108,
|
|
743
|
+
"utf16_swedish_ci": 109,
|
|
744
|
+
"utf16_turkish_ci": 110,
|
|
745
|
+
"utf16_czech_ci": 111,
|
|
746
|
+
"utf16_danish_ci": 112,
|
|
747
|
+
"utf16_lithuanian_ci": 113,
|
|
748
|
+
"utf16_slovak_ci": 114,
|
|
749
|
+
"utf16_spanish2_ci": 115,
|
|
750
|
+
"utf16_roman_ci": 116,
|
|
751
|
+
"utf16_persian_ci": 117,
|
|
752
|
+
"utf16_esperanto_ci": 118,
|
|
753
|
+
"utf16_hungarian_ci": 119,
|
|
754
|
+
"utf16_sinhala_ci": 120,
|
|
755
|
+
"utf16_german2_ci": 121,
|
|
756
|
+
"utf16_croatian_ci": 122,
|
|
757
|
+
"utf16_unicode_520_ci": 123,
|
|
758
|
+
"utf16_vietnamese_ci": 124,
|
|
759
|
+
"ucs2_unicode_ci": 128,
|
|
760
|
+
"ucs2_icelandic_ci": 129,
|
|
761
|
+
"ucs2_latvian_ci": 130,
|
|
762
|
+
"ucs2_romanian_ci": 131,
|
|
763
|
+
"ucs2_slovenian_ci": 132,
|
|
764
|
+
"ucs2_polish_ci": 133,
|
|
765
|
+
"ucs2_estonian_ci": 134,
|
|
766
|
+
"ucs2_spanish_ci": 135,
|
|
767
|
+
"ucs2_swedish_ci": 136,
|
|
768
|
+
"ucs2_turkish_ci": 137,
|
|
769
|
+
"ucs2_czech_ci": 138,
|
|
770
|
+
"ucs2_danish_ci": 139,
|
|
771
|
+
"ucs2_lithuanian_ci": 140,
|
|
772
|
+
"ucs2_slovak_ci": 141,
|
|
773
|
+
"ucs2_spanish2_ci": 142,
|
|
774
|
+
"ucs2_roman_ci": 143,
|
|
775
|
+
"ucs2_persian_ci": 144,
|
|
776
|
+
"ucs2_esperanto_ci": 145,
|
|
777
|
+
"ucs2_hungarian_ci": 146,
|
|
778
|
+
"ucs2_sinhala_ci": 147,
|
|
779
|
+
"ucs2_german2_ci": 148,
|
|
780
|
+
"ucs2_croatian_ci": 149,
|
|
781
|
+
"ucs2_unicode_520_ci": 150,
|
|
782
|
+
"ucs2_vietnamese_ci": 151,
|
|
783
|
+
"ucs2_general_mysql500_ci": 159,
|
|
784
|
+
"utf32_unicode_ci": 160,
|
|
785
|
+
"utf32_icelandic_ci": 161,
|
|
786
|
+
"utf32_latvian_ci": 162,
|
|
787
|
+
"utf32_romanian_ci": 163,
|
|
788
|
+
"utf32_slovenian_ci": 164,
|
|
789
|
+
"utf32_polish_ci": 165,
|
|
790
|
+
"utf32_estonian_ci": 166,
|
|
791
|
+
"utf32_spanish_ci": 167,
|
|
792
|
+
"utf32_swedish_ci": 168,
|
|
793
|
+
"utf32_turkish_ci": 169,
|
|
794
|
+
"utf32_czech_ci": 170,
|
|
795
|
+
"utf32_danish_ci": 171,
|
|
796
|
+
"utf32_lithuanian_ci": 172,
|
|
797
|
+
"utf32_slovak_ci": 173,
|
|
798
|
+
"utf32_spanish2_ci": 174,
|
|
799
|
+
"utf32_roman_ci": 175,
|
|
800
|
+
"utf32_persian_ci": 176,
|
|
801
|
+
"utf32_esperanto_ci": 177,
|
|
802
|
+
"utf32_hungarian_ci": 178,
|
|
803
|
+
"utf32_sinhala_ci": 179,
|
|
804
|
+
"utf32_german2_ci": 180,
|
|
805
|
+
"utf32_croatian_ci": 181,
|
|
806
|
+
"utf32_unicode_520_ci": 182,
|
|
807
|
+
"utf32_vietnamese_ci": 183,
|
|
808
|
+
"utf8_unicode_ci": 192,
|
|
809
|
+
"utf8_icelandic_ci": 193,
|
|
810
|
+
"utf8_latvian_ci": 194,
|
|
811
|
+
"utf8_romanian_ci": 195,
|
|
812
|
+
"utf8_slovenian_ci": 196,
|
|
813
|
+
"utf8_polish_ci": 197,
|
|
814
|
+
"utf8_estonian_ci": 198,
|
|
815
|
+
"utf8_spanish_ci": 199,
|
|
816
|
+
"utf8_swedish_ci": 200,
|
|
817
|
+
"utf8_turkish_ci": 201,
|
|
818
|
+
"utf8_czech_ci": 202,
|
|
819
|
+
"utf8_danish_ci": 203,
|
|
820
|
+
"utf8_lithuanian_ci": 204,
|
|
821
|
+
"utf8_slovak_ci": 205,
|
|
822
|
+
"utf8_spanish2_ci": 206,
|
|
823
|
+
"utf8_roman_ci": 207,
|
|
824
|
+
"utf8_persian_ci": 208,
|
|
825
|
+
"utf8_esperanto_ci": 209,
|
|
826
|
+
"utf8_hungarian_ci": 210,
|
|
827
|
+
"utf8_sinhala_ci": 211,
|
|
828
|
+
"utf8_german2_ci": 212,
|
|
829
|
+
"utf8_croatian_ci": 213,
|
|
830
|
+
"utf8_unicode_520_ci": 214,
|
|
831
|
+
"utf8_vietnamese_ci": 215,
|
|
832
|
+
"utf8_general_mysql500_ci": 223,
|
|
833
|
+
"utf8mb4_unicode_ci": 224,
|
|
834
|
+
"utf8mb4_icelandic_ci": 225,
|
|
835
|
+
"utf8mb4_latvian_ci": 226,
|
|
836
|
+
"utf8mb4_romanian_ci": 227,
|
|
837
|
+
"utf8mb4_slovenian_ci": 228,
|
|
838
|
+
"utf8mb4_polish_ci": 229,
|
|
839
|
+
"utf8mb4_estonian_ci": 230,
|
|
840
|
+
"utf8mb4_spanish_ci": 231,
|
|
841
|
+
"utf8mb4_swedish_ci": 232,
|
|
842
|
+
"utf8mb4_turkish_ci": 233,
|
|
843
|
+
"utf8mb4_czech_ci": 234,
|
|
844
|
+
"utf8mb4_danish_ci": 235,
|
|
845
|
+
"utf8mb4_lithuanian_ci": 236,
|
|
846
|
+
"utf8mb4_slovak_ci": 237,
|
|
847
|
+
"utf8mb4_spanish2_ci": 238,
|
|
848
|
+
"utf8mb4_roman_ci": 239,
|
|
849
|
+
"utf8mb4_persian_ci": 240,
|
|
850
|
+
"utf8mb4_esperanto_ci": 241,
|
|
851
|
+
"utf8mb4_hungarian_ci": 242,
|
|
852
|
+
"utf8mb4_sinhala_ci": 243,
|
|
853
|
+
"utf8mb4_german2_ci": 244,
|
|
854
|
+
"utf8mb4_croatian_ci": 245,
|
|
855
|
+
"utf8mb4_unicode_520_ci": 246,
|
|
856
|
+
"utf8mb4_vietnamese_ci": 247
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
SQL_RESERVED_WORDS = [
|
|
861
|
+
"ALL",
|
|
862
|
+
"ANALYSE",
|
|
863
|
+
"ANALYZE",
|
|
864
|
+
"AND",
|
|
865
|
+
"ANY",
|
|
866
|
+
"AS",
|
|
867
|
+
"ASC",
|
|
868
|
+
"AUTHORIZATION",
|
|
869
|
+
"BETWEEN",
|
|
870
|
+
"BINARY",
|
|
871
|
+
"BOTH",
|
|
872
|
+
"CASE",
|
|
873
|
+
"CAST",
|
|
874
|
+
"CHECK",
|
|
875
|
+
"COLLATE",
|
|
876
|
+
"COLUMN",
|
|
877
|
+
"CONSTRAINT",
|
|
878
|
+
"CREATE",
|
|
879
|
+
"CROSS",
|
|
880
|
+
"CURRENT_DATE",
|
|
881
|
+
"CURRENT_TIME",
|
|
882
|
+
"CURRENT_TIMESTAMP",
|
|
883
|
+
"CURRENT_USER",
|
|
884
|
+
"DEFAULT",
|
|
885
|
+
"DEFERRABLE",
|
|
886
|
+
"DESC",
|
|
887
|
+
"DISTINCT",
|
|
888
|
+
"DO",
|
|
889
|
+
"ELSE",
|
|
890
|
+
"END",
|
|
891
|
+
"EXCEPT",
|
|
892
|
+
"FALSE",
|
|
893
|
+
"FOR",
|
|
894
|
+
"FOREIGN",
|
|
895
|
+
"FREEZE",
|
|
896
|
+
"FROM",
|
|
897
|
+
"FULL",
|
|
898
|
+
"GRANT",
|
|
899
|
+
"GROUP",
|
|
900
|
+
"HAVING",
|
|
901
|
+
"ILIKE",
|
|
902
|
+
"IN",
|
|
903
|
+
"INITIALLY",
|
|
904
|
+
"INNER",
|
|
905
|
+
"INTERSECT",
|
|
906
|
+
"INTO",
|
|
907
|
+
"IS",
|
|
908
|
+
"ISNULL",
|
|
909
|
+
"JOIN",
|
|
910
|
+
"LEADING",
|
|
911
|
+
"LEFT",
|
|
912
|
+
"LIKE",
|
|
913
|
+
"LIMIT",
|
|
914
|
+
"LOCALTIME",
|
|
915
|
+
"LOCALTIMESTAMP",
|
|
916
|
+
"NATURAL",
|
|
917
|
+
"NEW",
|
|
918
|
+
"NOT",
|
|
919
|
+
"NOTNULL",
|
|
920
|
+
"NULL",
|
|
921
|
+
"OFF",
|
|
922
|
+
"OFFSET",
|
|
923
|
+
"OLD",
|
|
924
|
+
"ON",
|
|
925
|
+
"ONLY",
|
|
926
|
+
"OR",
|
|
927
|
+
"ORDER",
|
|
928
|
+
"OUTER",
|
|
929
|
+
"OVERLAPS",
|
|
930
|
+
"PLACING",
|
|
931
|
+
"PRIMARY",
|
|
932
|
+
"REFERENCES",
|
|
933
|
+
"RIGHT",
|
|
934
|
+
"SELECT",
|
|
935
|
+
"SESSION_USER",
|
|
936
|
+
"SIMILAR",
|
|
937
|
+
"SOME",
|
|
938
|
+
"TABLE",
|
|
939
|
+
"THEN",
|
|
940
|
+
"TO",
|
|
941
|
+
"TRAILING",
|
|
942
|
+
"TRUE",
|
|
943
|
+
"UNION",
|
|
944
|
+
"UNIQUE",
|
|
945
|
+
"USER",
|
|
946
|
+
"USING",
|
|
947
|
+
"VERBOSE",
|
|
948
|
+
"WHEN",
|
|
949
|
+
"WHERE"
|
|
950
|
+
]
|
|
951
|
+
|
|
952
|
+
SERVER_VARIABLES = {
|
|
953
|
+
# var_name: (value, type, charset)
|
|
954
|
+
'@@session.auto_increment_increment': (1, TYPES.MYSQL_TYPE_LONGLONG, CHARSET_NUMBERS['binary']),
|
|
955
|
+
'@@auto_increment_increment': (1, TYPES.MYSQL_TYPE_LONGLONG, CHARSET_NUMBERS['binary']),
|
|
956
|
+
|
|
957
|
+
'@@character_set_client': ('utf8', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
958
|
+
'@@character_set_connection': ('utf8', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
959
|
+
'@@character_set_results': ('utf8', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
960
|
+
|
|
961
|
+
'@@GLOBAL.character_set_server': ('latin1', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
962
|
+
'@@character_set_server': ('latin1', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
963
|
+
|
|
964
|
+
'@@GLOBAL.collation_server': ('latin1_swedish_ci', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
965
|
+
'@@collation_server': ('latin1_swedish_ci', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
966
|
+
|
|
967
|
+
'@@init_connect': ('', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']), # None or '' ?
|
|
968
|
+
'@@interactive_timeout': (28800, TYPES.MYSQL_TYPE_LONGLONG, CHARSET_NUMBERS['binary']),
|
|
969
|
+
'@@license': ('GPL', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
970
|
+
'@@lower_case_table_names': (0, TYPES.MYSQL_TYPE_LONGLONG, CHARSET_NUMBERS['binary']),
|
|
971
|
+
'@@max_allowed_packet': (16777216, TYPES.MYSQL_TYPE_LONGLONG, CHARSET_NUMBERS['binary']),
|
|
972
|
+
'@@net_buffer_length': (16384, TYPES.MYSQL_TYPE_LONGLONG, CHARSET_NUMBERS['binary']),
|
|
973
|
+
'@@net_write_timeout': (60, TYPES.MYSQL_TYPE_LONGLONG, CHARSET_NUMBERS['binary']),
|
|
974
|
+
'@@query_cache_size': (16777216, TYPES.MYSQL_TYPE_LONGLONG, CHARSET_NUMBERS['binary']),
|
|
975
|
+
'@@query_cache_type': ('OFF', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
976
|
+
'@@sql_mode': ('ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
977
|
+
# '@@system_time_zone': ('MSK', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
978
|
+
'@@system_time_zone': ('UTC', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
979
|
+
'@@time_zone': ('SYSTEM', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
980
|
+
|
|
981
|
+
'@@session.tx_isolation': ('REPEATABLE-READ', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
982
|
+
'@@tx_isolation': ('REPEATABLE-READ', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
983
|
+
|
|
984
|
+
'@@wait_timeout': (28800, TYPES.MYSQL_TYPE_LONGLONG, CHARSET_NUMBERS['binary']),
|
|
985
|
+
|
|
986
|
+
'@@session.tx_read_only': ('0', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
987
|
+
|
|
988
|
+
'@@version_comment': ('(MindsDB)', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
989
|
+
'@@version': ('8.0.17', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
990
|
+
|
|
991
|
+
'@@collation_connection': ('utf8_general_ci', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
992
|
+
'@@performance_schema': (1, TYPES.MYSQL_TYPE_LONGLONG, CHARSET_NUMBERS['binary']),
|
|
993
|
+
|
|
994
|
+
'@@GLOBAL.transaction_isolation': ('REPEATABLE-READ', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
995
|
+
'@@transaction_isolation': ('REPEATABLE-READ', TYPES.MYSQL_TYPE_VAR_STRING, CHARSET_NUMBERS['utf8_general_ci']),
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
class SESSION_TRACK(object):
|
|
1000
|
+
__slots__ = ()
|
|
1001
|
+
SESSION_TRACK_SYSTEM_VARIABLES = 0x00
|
|
1002
|
+
SESSION_TRACK_SCHEMA = 0x01
|
|
1003
|
+
SESSION_TRACK_STATE_CHANGE = 0x02
|
|
1004
|
+
SESSION_TRACK_GTIDS = 0x03
|
|
1005
|
+
SESSION_TRACK_TRANSACTION_CHARACTERISTICS = 0x04
|
|
1006
|
+
SESSION_TRACK_TRANSACTION_STATE = 0x05
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
SESSION_TRACK = SESSION_TRACK()
|
|
1010
|
+
|
|
1011
|
+
ALL = vars()
|
|
1012
|
+
|
|
1013
|
+
|
|
1014
|
+
def VAR_NAME(val, prefix=''):
|
|
1015
|
+
global ALL
|
|
1016
|
+
|
|
1017
|
+
for key in ALL.keys():
|
|
1018
|
+
value = ALL[key]
|
|
1019
|
+
if value == val and key != 'val':
|
|
1020
|
+
if prefix == '' or (prefix != '' and prefix == key[:len(prefix)]):
|
|
1021
|
+
return key
|
|
1022
|
+
return None
|
|
1023
|
+
|
|
1024
|
+
|
|
1025
|
+
def getConstName(consts, value):
|
|
1026
|
+
attrs = [x for x in dir(consts) if x.startswith('__') is False]
|
|
1027
|
+
constNames = {getattr(consts, x): x for x in attrs}
|
|
1028
|
+
if value in constNames:
|
|
1029
|
+
return constNames[value]
|
|
1030
|
+
return None
|