修复存量 PG 库缺 agenda_token_ledger 表(/api/token_usage 500)#43
Merged
Conversation
增量迁移 _ensure_agenda_isolation_schema 此前只补列不建表,而 PG 路径的 schema 文件 best-effort 重放在前序语句失败后整个事务 aborted,后续 CREATE TABLE 被静默跳过。两处修复:迁移函数显式建 ledger 表+索引 (双后端 DDL);schema 重放循环逐语句失败后 rollback,让剩余语句继续。
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.
问题
生产(Postgres,存量库)部署 #41 后 /api/token_usage 返回 500:relation "agenda_token_ledger" does not exist。
根因
修复
验证