Skip to content

Commit

Permalink
Merge pull request #10876 from camptocamp/backport/10853-to-2.8
Browse files Browse the repository at this point in the history
[Backport 2.8] Add missing space to script
  • Loading branch information
sbrunner authored Jan 11, 2024
2 parents 5be4459 + 7fd90b2 commit 4e4887a
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 4e4887a

Please sign in to comment.