Move 17 library crates into crates/, CLI binary into bin/fxt, consolidate 10 test crates into testing/, split config crate from deployment config files. Root directory reduced from 38+ to ~17 directories. All Cargo.toml paths and build.rs proto refs updated. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
975 B
JSON
22 lines
975 B
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "\n INSERT INTO regime_states (\n symbol, regime, confidence, event_timestamp,\n cusum_s_plus, cusum_s_minus, adx, stability\n )\n VALUES ($1, $2, $3, $4, $5, $6, $7, $8)\n ON CONFLICT (symbol, event_timestamp) DO UPDATE\n SET regime = EXCLUDED.regime,\n confidence = EXCLUDED.confidence,\n cusum_s_plus = EXCLUDED.cusum_s_plus,\n cusum_s_minus = EXCLUDED.cusum_s_minus,\n adx = EXCLUDED.adx,\n stability = EXCLUDED.stability\n ",
|
|
"describe": {
|
|
"columns": [],
|
|
"parameters": {
|
|
"Left": [
|
|
"Text",
|
|
"Text",
|
|
"Float8",
|
|
"Timestamptz",
|
|
"Float8",
|
|
"Float8",
|
|
"Float8",
|
|
"Float8"
|
|
]
|
|
},
|
|
"nullable": []
|
|
},
|
|
"hash": "747c3e5e6fed454e259f7046e2b1311cbc1b919596a71273fe98c8e9332b171c"
|
|
}
|