Skip to content

Commit

Permalink
Merge pull request #10874 from camptocamp/backport/10853-to-2.6
Browse files Browse the repository at this point in the history
[Backport 2.6] Add missing space to script
  • Loading branch information
sbrunner authored Jan 11, 2024
2 parents e56b495 + 06460a2 commit 021d9b1
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 021d9b1

Please sign in to comment.