diff options
author | Michael Paquier <michael@paquier.xyz> | 2024-12-17 09:44:06 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2024-12-17 09:44:06 +0900 |
commit | 0f23dedc91760271aefe9e3c52d677c079bb7bce (patch) | |
tree | 1683d309c43ffcca01170c359a5394369dbad257 /src/backend/commands/typecmds.c | |
parent | e116b703f0b9b551cb413c8f2cfe231a9ce73f42 (diff) | |
download | postgresql-0f23dedc91760271aefe9e3c52d677c079bb7bce.tar.gz postgresql-0f23dedc91760271aefe9e3c52d677c079bb7bce.zip |
Print out error position for some more DDLs
The following commands gain some information about the error position in
the query, should they fail when looking at the type used:
- CREATE TYPE (LIKE)
- CREATE TABLE OF
Both are related to typenameType() where the type name lookup is done.
These calls gain the ParseState that already exists in these paths.
Author: Kirill Reshke, Jian He
Reviewed-by: Álvaro Herrera, Michael Paquier
Discussion: https://postgr.es/m/CALdSSPhqfvKbDwqJaY=yEePi_aq61GmMpW88i6ZH7CMG_2Z4Cg@mail.gmail.com
Diffstat (limited to 'src/backend/commands/typecmds.c')
-rw-r--r-- | src/backend/commands/typecmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/typecmds.c b/src/backend/commands/typecmds.c index 61273139560..4f20b5be064 100644 --- a/src/backend/commands/typecmds.c +++ b/src/backend/commands/typecmds.c @@ -348,7 +348,7 @@ DefineType(ParseState *pstate, List *names, List *parameters) Type likeType; Form_pg_type likeForm; - likeType = typenameType(NULL, defGetTypeName(likeTypeEl), NULL); + likeType = typenameType(pstate, defGetTypeName(likeTypeEl), NULL); likeForm = (Form_pg_type) GETSTRUCT(likeType); internalLength = likeForm->typlen; byValue = likeForm->typbyval; |