1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-09 06:21:09 +03:00

Introduce sequence_*() access functions

Similarly to tables and indexes, these functions are able to open
relations with a sequence relkind, which is useful to make a distinction
with the other relation kinds.  Previously, commands/sequence.c used a
mix of table_{close,open}() and relation_{close,open}() routines when
manipulating sequence relations, so this clarifies the code.

A direct effect of this change is to align the error messages produced
when attempting DDLs for sequences on relations with an unexpected
relkind, like a table or an index with ALTER SEQUENCE, providing an
extra error detail about the relkind of the relation used in the DDL
query.

Author: Michael Paquier
Reviewed-by: Tomas Vondra
Discussion: https://postgr.es/m/ZWlohtKAs0uVVpZ3@paquier.xyz
This commit is contained in:
Michael Paquier
2024-02-26 16:04:59 +09:00
parent 025f0a6f91
commit 449e798c77
8 changed files with 140 additions and 20 deletions

View File

@@ -9,6 +9,7 @@ subdir('heap')
subdir('index')
subdir('nbtree')
subdir('rmgrdesc')
subdir('sequence')
subdir('spgist')
subdir('table')
subdir('tablesample')