Update test output

issue/6694
Gokhan Gulbiz 2023-03-27 12:58:13 +03:00
parent d484a25891
commit 44c21f6ac3
No known key found for this signature in database
GPG Key ID: 608EF06B6BD1B45B
1 changed files with 4 additions and 0 deletions

View File

@ -345,8 +345,12 @@ Indexes:
"color_color_id_key" UNIQUE CONSTRAINT, btree (color_id)
INSERT INTO color(color_name) VALUES ('Red');
ALTER SEQUENCE color_color_id_seq RESTART WITH 1000;
ERROR: Altering a distributed sequence is currently not supported.
\c - postgres - :master_port
SET search_path TO generated_identities;
SET client_min_messages to ERROR;
ALTER SEQUENCE color_color_id_seq RESTART WITH 1000;
ERROR: Altering a distributed sequence is currently not supported.
DROP SCHEMA generated_identities CASCADE;
DROP USER identity_test_user;