Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update go/internal/feast/onlinestore/postgresonlinestore.go
Co-authored-by: devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Signed-off-by: samuelkim7 <samuel.kim@goflink.com>
  • Loading branch information
samuelkim7 and devin-ai-integration[bot] committed Feb 11, 2026
commit b25c9c6976b825b6a42346ac7c180a4989c9ff85
3 changes: 2 additions & 1 deletion go/internal/feast/onlinestore/postgresonlinestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ func (p *PostgresOnlineStore) OnlineRead(ctx context.Context, entityKeys []*type
}

for _, featureViewName := range featureViewNames {
tableName := fmt.Sprintf(`"%s"`, tableId(p.project, featureViewName))
tableName := fmt.Sprintf(`"%s"`, strings.ReplaceAll(tableId(p.project, featureViewName), `"`, `""`))

query := fmt.Sprintf(
`SELECT entity_key, feature_name, value, event_ts FROM %s WHERE entity_key = ANY($1)`,
tableName,
Expand Down
Loading