Merge pull request '[agent/codex:gpt-5.4-mini] Read docs/RFC-STORE.md fully. Find features described in the...' (#143) from agent/read---spec-code-core-go-store-rfc-md-fu into dev
Some checks are pending
Security Scan / security (push) Waiting to run
Test / test (push) Waiting to run

This commit is contained in:
Virgil 2026-04-04 12:13:20 +00:00
commit 209b5b6b2d

View file

@ -12,8 +12,8 @@ import (
)
const (
workspaceEntriesTableName = "workspace_entries"
workspaceIdentityGroupName = "workspace"
workspaceEntriesTableName = "workspace_entries"
workspaceSummaryGroupPrefix = "workspace"
)
const createWorkspaceEntriesTableSQL = `CREATE TABLE IF NOT EXISTS workspace_entries (
@ -532,7 +532,7 @@ func openWorkspaceDatabase(databasePath string) (*sql.DB, error) {
}
func workspaceSummaryGroup(workspaceName string) string {
return core.Concat(workspaceIdentityGroupName, ":", workspaceName)
return core.Concat(workspaceSummaryGroupPrefix, ":", workspaceName)
}
func workspaceFilePath(stateDirectory, name string) string {