Add MariaDB integration with native MariaDB VECTOR support#34
Open
ImAshishChoudhary wants to merge 1 commit intoMindinventory:masterfrom
Open
Add MariaDB integration with native MariaDB VECTOR support#34ImAshishChoudhary wants to merge 1 commit intoMindinventory:masterfrom
ImAshishChoudhary wants to merge 1 commit intoMindinventory:masterfrom
Conversation
c810b9f to
070d1b5
Compare
ImAshishChoudhary
pushed a commit
to ImAshishChoudhary/MindSQL
that referenced
this pull request
Oct 31, 2025
- Add comprehensive README with hackathon links and submission details - Update LICENSE to MIT (2025) - Add simplified CONTRIBUTING for hackathon showcase - Update CODE_OF_CONDUCT.md to Contributor Covenant 2.0 - Add SECURITY.md with reporting guidelines This is showcase documentation for the MariaDB Python Hackathon 2024 submission. Main contribution is via PR Mindinventory#34 to original MindSQL repository.
cf9bcd0 to
6eb0403
Compare
Implement MariaDB database connector and vector store with native VECTOR(384) data type support for efficient similarity search. Includes improvements to SQL extraction and DDL retrieval.
6eb0403 to
2c2faae
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add MariaDB Integration with Native VECTOR Support
This PR adds MariaDB database and vector store integration to MindSQL with native
VECTOR(384)data type support.What's Added
MariaDB Database Connector (
mindsql/databases/mariadb.py)MariaDB Vector Store (
mindsql/vectorstores/mariadb_vector.py)What's Modified
Constants (
mindsql/_utils/constants.py)Helper Functions (
mindsql/_helper/helper.py)Core Pipeline (
mindsql/core/mindsql_core.py)Module Exports (
mindsql/databases/__init__.pyandmindsql/vectorstores/__init__.py)Architecture
Usage Example