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
This commit is contained in:
commit
209b5b6b2d
1 changed files with 3 additions and 3 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue