Stage repo scaffolding ahead of postgres-plugin migration - #1
Merged
Conversation
Adds the repo-level basics that every other Tabularis driver plugin repo carries (LICENSE, .gitignore, .editorconfig, CODEOWNERS, rust-toolchain.toml, dependabot config, CI + Release workflows) plus README/CLAUDE.md/CHANGELOG describing the plugin's purpose and current status. No plugin source (Cargo.toml, src/, .tabularium) is included yet — this is intentionally scaffolding-only, staged ahead of the actual CP-4 extraction from TabularisDB/tabularis's plugins/postgres-plugin/. The CI workflow will not pass until that source lands.
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.
Summary
Stages the repo-level basics ahead of migrating
plugins/postgres-plugin/out of
TabularisDB/tabularis(tracked intabularis#577, the
CP-4 gate). No plugin source is included yet — this is scaffolding only,
matching what every other Tabularis driver plugin repo (
tabularis-dynamodb-pluginas the closest reference) carries before its first real commit:
LICENSE(Apache-2.0, matching the plugin ecosystem convention).gitignore,.editorconfig,.markdownlint.jsonCODEOWNERS,rust-toolchain.toml.github/dependabot.yml(cargo + github-actions, weekly).github/workflows/ci.yml— build/test/clippy/fmt on push+PR tomain.github/workflows/release.yml— cross-platform release builds (Linuxx86_64/aarch64, macOS x86_64/aarch64, Windows x86_64) on
v*tags,publishing
.tabulariumalongside the platform zipsREADME.md— features, connection config, supported types, installation,supported RPC methods, dev workflow (adapted from the DynamoDB plugin's
README, content rewritten for PostgreSQL)
CLAUDE.md— architecture rules and migration-status note for futureagent sessions in this repo
CHANGELOG.md— Unreleased entry documenting this scaffolding commitWhat's NOT here yet
Cargo.toml,src/, and.tabularium— the actual plugin implementation.The
ci.ymlworkflow will not pass until that source lands (there's nocrate to build yet). This is intentional and called out explicitly in the
README's status banner and in
CLAUDE.md.Next steps (separate PR)
Once this merges, the actual migration PR will bring over the plugin source
from
plugins/postgres-plugin/intabularismain repo, at which pointci.ymlshould go green and a.tabularium+Cargo.tomlwill exist here.