mirror of
https://github.com/postgres/postgres.git
synced 2025-11-25 12:03:53 +03:00
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
15 lines
336 B
Makefile
15 lines
336 B
Makefile
#
|
|
# Makefile for the access methods module
|
|
#
|
|
# src/backend/access/Makefile
|
|
#
|
|
|
|
subdir = src/backend/access
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = brin common gin gist hash heap index nbtree rmgrdesc spgist \
|
|
sequence table tablesample transam
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|