feat(rfc-0057): add teradata server type - #318
Merged
Merged
Conversation
Applies RFC-0057 to ODCS v3.2.0: new `teradata` server type for Teradata Vantage. Both schema files updated in lockstep (enum value, conditional dispatch, and TeradataServer def with required host and optional port, defaulting to 1025, plus database). No `schema` field, since in Teradata the database is the namespace. Port uses the shared Port $def so it accepts variable references. Docs section, positive example, and a negative test (missing host is rejected).
jgperrin
approved these changes
Aug 18, 2026
jgperrin
added a commit
that referenced
this pull request
Aug 28, 2026
* feat(rfc-0057): add `teradata` server type (#318) Applies RFC-0057 to ODCS v3.2.0: new `teradata` server type for Teradata Vantage. Both schema files updated in lockstep (enum value, conditional dispatch, and TeradataServer def with required host and optional port, defaulting to 1025, plus database). No `schema` field, since in Teradata the database is the namespace. Port uses the shared Port $def so it accepts variable references. Docs section, positive example, and a negative test (missing host is rejected). * feat(rfc-0059): add Actian server types (#319) Applies approved RFC-0059 to ODCS v3.2.0: four new server types — `ingres` (Actian Ingres), `vectorwise` (Actian Analytics Engine), `versant` (Actian NoSQL Database) and `poet` (Actian NoSQL FastObjects) — plus `fastobjects` as a synonym of `poet` and `btrieve` as a synonym of `zen`, both dispatching to the existing definition, as `postgresql`/`postgres` already share PostgresServer. Both schema files updated in lockstep: enum values, conditional dispatches, and IngresServer / VectorwiseServer / VersantServer / PoetServer defs. Ports use the shared Port $def so they accept variable references. No `schema` field on any of the four: for the two SQL engines the namespace is the table owner resolved from the connecting user; the two object databases have no SQL schema namespace. Docs sections, a positive example exercising all six values, and five negative tests (including one per synonym, proving synonyms validate as strictly as their primary value). Claude-Session: https://claude.ai/code/session_01An6KmURPXG4Y8uDwd15Roq Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Jochen Christ <jochen.christ@entropy-data.com> Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
Applies RFC-0057 to ODCS v3.2.0: a new
teradataserver type for Teradata Vantage.Fields
No
schemafield: in Teradata, the database is the namespace.Changes
odcs-json-schema-latest.json,odcs-json-schema-v3.2.0.json): enum value, conditional dispatch, and theTeradataServerdefinition.portuses the shared#/$defs/Portdefinition from RFC-0050, so it also accepts a variable reference such as${DB_PORT}.infrastructure-servers.md, plusteradataadded to the servertypelist.docs/examples/server/teradata-server.odcs.yaml.src/script/negative-tests/teradata-missing-host.odcs.yaml(missinghostis rejected).Non-breaking: adds a new optional server type.
Validation
validate-examples.shandvalidate-negative.shpass locally against bothv3.2.0andlatest. The negative test is rejected for the intended reason (must have required property 'host').Note
The RFC still has an empty Decision section, so this needs TSC approval before merge.