Skip to content

Commit

Permalink
Merge pull request #10875 from camptocamp/backport/10853-to-2.7
Browse files Browse the repository at this point in the history
[Backport 2.7] Add missing space to script
  • Loading branch information
sbrunner authored Jan 11, 2024
2 parents fb245c9 + 9ca8874 commit d53c5c8
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 d53c5c8

Please sign in to comment.