1-- This file and its contents are licensed under the Apache License 2.0.
2-- Please see the included NOTICE for copyright information and
3-- LICENSE-APACHE for a copy of the license.
4
5-- check sequences did not get reset
6SELECT seqrelid::regclass,
7  nextval(seqrelid),
8  seqstart,
9  seqincrement,
10  seqmax,
11  seqmin
12FROM pg_sequence
13ORDER BY seqrelid::regclass::text;
14
15