Skip to content

Commit

Permalink
fix the search value table
Browse files Browse the repository at this point in the history
  • Loading branch information
dallinbentley committed Feb 5, 2025
1 parent 8c853b7 commit 2c7ef16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/utils/stored_values/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ pub async fn search_stored_values(
let schema_name = organization_id.to_string().replace("-", "_");
let query = format!(
"SELECT value, column_name, column_id
FROM {}_values.values_v1
FROM values_{}.values_v1
WHERE dataset_id = $2::uuid
ORDER BY embedding <=> $1::vector
LIMIT $3::integer",
Expand Down

0 comments on commit 2c7ef16

Please sign in to comment.