pipekit/config/modules/stkb.sql
Paul Trowbridge dd9f89f4b5 feat: version-control pipeline definitions via export/apply
Add `pipekit export` / `pipekit apply` (pipekit/config_io.py) to serialise the
DB's config — drivers, connections, modules (+ columns, watermarks, hooks),
groups, schedules — to a git-trackable text tree under config/, and rehydrate
it. SQLite stays runtime state; definitions become diffable/reviewable/
revertible.

- config only: run_log/group_run/settings and per-run state columns excluded
- name-keyed refs (portable across databases); source_query in .sql sidecars;
  columns as real JSON arrays for line-by-line diffs
- newline-normalised so CRLF-vs-LF is never a spurious change
- apply is create/update by name; child collections fully synced; top-level
  deletes gated behind --prune; --dry-run prints the plan
- round-trip is identity (export -> apply --dry-run == nothing to do)

Commits the current config/ as the first baseline, capturing the freshly
populated columns_json for rm00101/rm00301/iv00101. Documented in SPEC.md.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-22 10:56:55 -04:00

29 lines
786 B
SQL

SELECT
RTRIM(BXPART) AS bxpart,
RTRIM(BXLOT) AS bxlot,
RTRIM(BXSTOK) AS bxstok,
RTRIM(BXUNIT) AS bxunit,
BXQTOH AS bxqtoh,
BXQTAL AS bxqtal,
BXMNQT AS bxmnqt,
BXMXQT AS bxmxqt,
BXQTOD AS bxqtod,
CASE WHEN BXPDAT IN (DATE('0001-01-01'), DATE('9999-12-31')) THEN NULL ELSE BXPDAT END AS bxpdat,
RTRIM(BXCCGP) AS bxccgp,
BXQTSO AS bxqtso,
RTRIM(BXPLNT) AS bxplnt,
RTRIM(BXFUT1) AS bxfut1,
RTRIM(BXFUT2) AS bxfut2,
RTRIM(BXFUT3) AS bxfut3,
RTRIM(BXFUT4) AS bxfut4,
RTRIM(BXFUT5) AS bxfut5,
RTRIM(BXFUT6) AS bxfut6,
RTRIM(BXFUT7) AS bxfut7,
RTRIM(BXFUT8) AS bxfut8,
RTRIM(BXFUT9) AS bxfut9,
BXFUTA AS bxfuta,
CASE WHEN BXLEXP IN (DATE('0001-01-01'), DATE('9999-12-31')) THEN NULL ELSE BXLEXP END AS bxlexp
FROM LGDAT.STKB
WHERE
BXQTOH <> 0