在線路519重新啓動序列和truncate table看起來不錯,但如果一個rollbacked事務中運行,截斷不會發生,但序列重啓will
Important: Because sequences are non-transactional, changes made by setval are not undone if the transaction rolls back.
見:
s1=> create table test1 (id serial primary key, a text not null);
CREATE TABLE
s1=> \d
List of relations
Schema | Name | Type | Owner
--------+--------------+----------+--------
public | test1 | table | albert
public | test1_id_seq | sequence | albert
(2 rows)
s1=> insert into test1(a) values ('apple');
INSERT 0 1
s1=> select * from test1;
id | a
----+-------
1 | apple
(1 row)
s1=> select * from test1_id_seq;
sequence_name | last_value | start_value | increment_by | max_value | min_value | cache_value | log_cnt | is_cycled | is_called
---------------+------------+-------------+--------------+---------------------+-----------+-------------+---------+-----------+-----------
test1_id_seq | 1 | 1 | 1 | 9223372036854775807 | 1 | 1 | 32 | f | t
(1 row)
s1=> insert into test1(a) values ('bannana');
INSERT 0 1
s1=> select * from test1;
id | a
----+---------
1 | apple
2 | bannana
(2 rows)
s1=> insert into test1(a) values ('bannana');
INSERT 0 1
s1=> select * from test1;
id | a
----+---------
1 | apple
2 | bannana
3 | bannana
(3 rows)
s1=> select * from test1_id_seq;
sequence_name | last_value | start_value | increment_by | max_value | min_value | cache_value | log_cnt | is_cycled | is_called
---------------+------------+-------------+--------------+---------------------+-----------+-------------+---------+-----------+-----------
test1_id_seq | 3 | 1 | 1 | 9223372036854775807 | 1 | 1 | 30 | f | t
(1 row)
s1=> begin;
BEGIN
s1=> alter sequence test1_id_seq RESTART WITH 1;
ALTER SEQUENCE
s1=> truncate table test1;
TRUNCATE TABLE
s1=> rollback;
ROLLBACK
s1=> select * from test1_id_seq;
sequence_name | last_value | start_value | increment_by | max_value | min_value | cache_value | log_cnt | is_cycled | is_called
---------------+------------+-------------+--------------+---------------------+-----------+-------------+---------+-----------+-----------
test1_id_seq | 1 | 1 | 1 | 9223372036854775807 | 1 | 1 | 0 | f | f
(1 row)
s1=> select * from test1;
id | a
----+---------
1 | apple
2 | bannana
3 | bannana
(3 rows)
s1=>
「TRUNCATE ... RESTART IDENTITY」也是如此。 –
這是一個有趣的筆記。但我不確定它適用於這裏的具體失敗。隔離測試我仍然失敗。這似乎與使用預處理語句有關,因爲它們只是運行我們沒有使用事務的執行測試。 –