Skip to content

Commit

Permalink
Add missing space to script. In some versions of PostgreSQL, this is …
Browse files Browse the repository at this point in the history
…problematic (#10853)
  • Loading branch information
jwkaltz committed Jan 11, 2024
1 parent e56b495 commit 06460a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/clone_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ BEGIN
|| ' MAXVALUE ' || seq.maximum_value
|| ' START WITH ' || seq.start_value
|| ' RESTART ' || seq.minimum_value
|| sq_cycled || ';';
|| ' ' || sq_cycled || ';';

buffer := quote_ident(dest_schema) || '.' || quote_ident(seq.sequence_name);
IF include_recs
Expand Down

0 comments on commit 06460a2

Please sign in to comment.