You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(sources/singlestore): Add ConnectionParams to SingleStore Config (#2555)
## Description
Similarly to MySQL and Postgres, we are adding `connectionParams` field
to the SingleStore config.
## PR Checklist
> Thank you for opening a Pull Request! Before submitting your PR, there
are a
> few things you can do to make sure it goes smoothly:
- [x] Make sure you reviewed
[CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md)
- [ ] Make sure to open an issue as a
[bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose)
before writing your code! That way we can discuss the change, evaluate
designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)
- [x] Make sure to add `!` if this involve a breaking change
🛠️ Fixes #<issue_number_goes_here>
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com>
| host | string | true | IP address or hostname to connect to (e.g. "127.0.0.1"). |
114
+
| port | string | true | Port to connect to (e.g. "3306"). |
115
+
| database | string | true | Name of the SingleStore database to connect to (e.g. "my_db"). |
116
+
| user | string | true | Name of the SingleStore database user to connect as (e.g. "admin"). |
117
+
| password | string | true | Password of the SingleStore database user. |
118
+
| queryTimeout | string | false | Maximum time to wait for query execution (e.g. "30s", "2m"). By default, no timeout is applied. |
119
+
| connectionParams | map[string]string | false | Additional driver parameters appended to the DSN. Supports any [go-sql-driver/mysql DSN parameter](https://github.com/go-sql-driver/mysql#dsn-data-source-name). Commonly used for SSL configuration (see `tls` values below). |
0 commit comments