You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.
createtablet(id int8 generated by default as identity);
Diff with target:
CREATESEQUENCEIF NOT EXISTS public.t_id_seq
INCREMENT 1
START 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;
ALTERSEQUENCEpublic.t_id_seq
OWNER TO postgres;
CREATETABLEIF NOT EXISTS public.t
(
id bigintNOT NULL GENERATED BY DEFAULT AS IDENTITY ( INCREMENT 1 START 1 MINVALUE 1 MAXVALUE 9223372036854775807 CACHE 1 )
)
TABLESPACE pg_default;
ALTERTABLE IF EXISTS public.t
OWNER to postgres;
\ds after running the above on target:
postgres=# \ds
List of relations
Schema | Name | Type | Owner
--------+-----------+----------+----------
public | t_id_seq | sequence | postgres
public | t_id_seq1 | sequence | postgres
(2 rows)
Expected behavior
The CREATE SEQUENCE ... part shouldn't exist.
The text was updated successfully, but these errors were encountered:
Bug report
To Reproduce
On
source
:Diff with
target
:\ds
after running the above ontarget
:Expected behavior
The
CREATE SEQUENCE ...
part shouldn't exist.The text was updated successfully, but these errors were encountered: