Skip to content

Commit

Permalink
Fix small typo from #97 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
craigpangea authored Sep 3, 2023
1 parent 25cd795 commit 553d8ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ pub fn insert_meta(name: CheckedName<'_>, is_partitioned: bool) -> Result<String
Ok(format!(
"
INSERT INTO {PGMQ_SCHEMA}.{TABLE_PREFIX}_meta (queue_name, is_partitioned)
VALUES ('{name}', '{is_partitioned}')
VALUES ('{name}', {is_partitioned})
ON CONFLICT
DO NOTHING;
",
Expand Down

0 comments on commit 553d8ba

Please sign in to comment.