File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
src/test/regress/expected Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -220,6 +220,13 @@ SELECT nextval('sequence_test2');
220220 5
221221(1 row)
222222
223+ -- Information schema
224+ SELECT * FROM information_schema.sequences WHERE sequence_name IN ('sequence_test2');
225+ sequence_catalog | sequence_schema | sequence_name | data_type | numeric_precision | numeric_precision_radix | numeric_scale | start_value | minimum_value | maximum_value | increment | cycle_option
226+ ------------------+-----------------+----------------+-----------+-------------------+-------------------------+---------------+-------------+---------------+---------------+-----------+--------------
227+ regression | public | sequence_test2 | bigint | 64 | 2 | 0 | 32 | 5 | 36 | 4 | YES
228+ (1 row)
229+
223230-- Test comments
224231COMMENT ON SEQUENCE asdf IS 'won''t work';
225232ERROR: relation "asdf" does not exist
You can’t perform that action at this time.
0 commit comments