|
| 1 | +# Copyright (c) 2025 ADBC Drivers Contributors |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +# Allowlist of PUBLIC repos the bots may fetch on demand for reference context |
| 16 | +# (loaded by shared.context_repos.load_context_repos; surfaced into the |
| 17 | +# fetch_context_repo tool menu). Cloned LAZILY by fetch_context_repo only when the |
| 18 | +# agent needs them — never vendored, never cloned up front. PUBLIC repos only: the |
| 19 | +# clone is unauthenticated (no token), so keep clone_url a plain HTTPS URL. |
| 20 | +context_repos: |
| 21 | + - name: databricks-jdbc |
| 22 | + description: > |
| 23 | + Databricks' official JDBC driver (Java) — the canonical reference for |
| 24 | + correct Databricks SQL/metadata behavior. Consult it when the RIGHT |
| 25 | + behavior is uncertain or an issue cites JDBC for parity: metadata |
| 26 | + (GetColumns/ORDINAL_POSITION, GetTables, catalog/schema wildcards), type |
| 27 | + mapping, error/status semantics, CloudFetch. grep for the class/method the |
| 28 | + issue names (e.g. MetadataResultSetBuilder) to see how JDBC does it, then |
| 29 | + mirror it in the C# driver. |
| 30 | + clone_url: https://github.com/databricks/databricks-jdbc.git |
0 commit comments