chore: fix user string

This commit is contained in:
Steven
2023-12-13 19:08:06 +08:00
parent b20e0097cf
commit 2d9c5d16e1
5 changed files with 5 additions and 5 deletions

View File

@ -89,7 +89,7 @@ func vacuumMemoOrganizer(ctx context.Context, tx *sql.Tx) error {
}
// Build the subquery for user_id
subQueryUser, subArgsUser, err := squirrel.Select("id").From("\"user\"").PlaceholderFormat(squirrel.Dollar).ToSql()
subQueryUser, subArgsUser, err := squirrel.Select("id").From(`"user"`).PlaceholderFormat(squirrel.Dollar).ToSql()
if err != nil {
return err
}