Fix conflict indices (#30585)
Release Notes: - Fix a bug where python path could be corrupted
This commit is contained in:
parent
3ea86da16f
commit
98a18e04f7
1 changed files with 2 additions and 2 deletions
|
@ -1403,8 +1403,8 @@ impl WorkspaceDb {
|
|||
INSERT INTO toolchains(workspace_id, worktree_id, relative_worktree_path, language_name, name, path) VALUES (?, ?, ?, ?, ?, ?)
|
||||
ON CONFLICT DO
|
||||
UPDATE SET
|
||||
name = ?4,
|
||||
path = ?5
|
||||
name = ?5,
|
||||
path = ?6
|
||||
|
||||
))
|
||||
.context("Preparing insertion")?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue