BUG #17339: Assert failed on attempt to detach a sequence concurrently - Mailing list pgsql-bugs
From | PG Bug reporting form |
---|---|
Subject | BUG #17339: Assert failed on attempt to detach a sequence concurrently |
Date | |
Msg-id | 17339-a9e09aaf38a3457a@postgresql.org Whole thread Raw |
Responses |
Re: BUG #17339: Assert failed on attempt to detach a sequence concurrently
|
List | pgsql-bugs |
The following bug has been logged on the website: Bug reference: 17339 Logged by: Alexander Lakhin Email address: exclusion@gmail.com PostgreSQL version: 14.1 Operating system: Ubuntu 20.04 Description: The following query: CREATE SEQUENCE seq; CREATE TABLE range_parted(a int) PARTITION BY RANGE(a); ALTER TABLE range_parted DETACH PARTITION seq CONCURRENTLY; Leads to a failed assertion with the following stacktrace: Core was generated by `postgres: law regression [local] ALTER TABLE '. Program terminated with signal SIGABRT, Aborted. #0 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50 50 ../sysdeps/unix/sysv/linux/raise.c: No such file or directory. (gdb) bt #0 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50 #1 0x00007f270bc93859 in __GI_abort () at abort.c:79 #2 0x000056140a973f94 in ExceptionalCondition ( conditionName=0x56140aaf2260 "child_rel->rd_rel->relkind == RELKIND_RELATION || child_rel->rd_rel->relkind == RELKIND_PARTITIONED_TABLE", errorType=0x56140aaed143 "FailedAssertion", fileName=0x56140aaed6b7 "tablecmds.c", lineNumber=14790) at assert.c:69 #3 0x000056140a4ed790 in MarkInheritDetached (child_rel=0x7f26fcb7f7d8, parent_rel=0x7f26fcb7e658) at tablecmds.c:14790 #4 0x000056140a4f4e9f in ATExecDetachPartition (wqueue=0x7ffcb3947328, tab=0x56140bc9d558, rel=0x7f26fcb7e658, name=0x56140bca1ed0, concurrent=true) at tablecmds.c:17785 #5 0x000056140a4d5cab in ATExecCmd (wqueue=0x7ffcb3947328, tab=0x56140bc9d558, cmd=0x56140bc9ae18, lockmode=4, cur_pass=10, context=0x7ffcb3947520) at tablecmds.c:5134 #6 0x000056140a4d4bf1 in ATRewriteCatalogs (wqueue=0x7ffcb3947328, lockmode=4, context=0x7ffcb3947520) at tablecmds.c:4792 #7 0x000056140a4d4030 in ATController (parsetree=0x56140bc79e20, rel=0x7f26fcb7e658, cmds=0x56140bc79e58, recurse=true, lockmode=4, context=0x7ffcb3947520) at tablecmds.c:4388 #8 0x000056140a4d3c37 in AlterTable (stmt=0x56140bc79e20, lockmode=4, context=0x7ffcb3947520) at tablecmds.c:4035 #9 0x000056140a7bac4a in ProcessUtilitySlow (pstate=0x56140bc9ab90, pstmt=0x56140bc7a1c8, queryString=0x56140bc79280 "ALTER TABLE range_parted DETACH PARTITION seq CONCURRENTLY;", context=PROCESS_UTILITY_TOPLEVEL, params=0x0, queryEnv=0x0, dest=0x56140bc7a2b8, qc=0x7ffcb3947b70) at utility.c:1317 #10 0x000056140a7ba4f1 in standard_ProcessUtility (pstmt=0x56140bc7a1c8, queryString=0x56140bc79280 "ALTER TABLE range_parted DETACH PARTITION seq CONCURRENTLY;", readOnlyTree=false, context=PROCESS_UTILITY_TOPLEVEL, params=0x0, queryEnv=0x0, dest=0x56140bc7a2b8, qc=0x7ffcb3947b70) at utility.c:1066 #11 0x000056140a7b9461 in ProcessUtility (pstmt=0x56140bc7a1c8, queryString=0x56140bc79280 "ALTER TABLE range_parted DETACH PARTITION seq CONCURRENTLY;", readOnlyTree=false, context=PROCESS_UTILITY_TOPLEVEL, params=0x0, queryEnv=0x0, dest=0x56140bc7a2b8, qc=0x7ffcb3947b70) at utility.c:527 #12 0x000056140a7b7d00 in PortalRunUtility (portal=0x56140bce8180, pstmt=0x56140bc7a1c8, isTopLevel=true, setHoldSnapshot=false, dest=0x56140bc7a2b8, qc=0x7ffcb3947b70) at pquery.c:1155 #13 0x000056140a7b7f8b in PortalRunMulti (portal=0x56140bce8180, isTopLevel=true, setHoldSnapshot=false, dest=0x56140bc7a2b8, altdest=0x56140bc7a2b8, qc=0x7ffcb3947b70) at pquery.c:1312 #14 0x000056140a7b73ba in PortalRun (portal=0x56140bce8180, count=9223372036854775807, isTopLevel=true, run_once=true, dest=0x56140bc7a2b8, altdest=0x56140bc7a2b8, qc=0x7ffcb3947b70) at pquery.c:788 #15 0x000056140a7b01f6 in exec_simple_query ( query_string=0x56140bc79280 "ALTER TABLE range_parted DETACH PARTITION seq CONCURRENTLY;") at postgres.c:1214 #16 0x000056140a7b50e5 in PostgresMain (argc=1, argv=0x7ffcb3947d90, dbname=0x56140bca53d8 "regression", username=0x56140bca53b8 "law") at postgres.c:4486 #17 0x000056140a6d9974 in BackendRun (port=0x56140bc9ccf0) at postmaster.c:4530 #18 0x000056140a6d91cf in BackendStartup (port=0x56140bc9ccf0) at postmaster.c:4252 #19 0x000056140a6d4fc4 in ServerLoop () at postmaster.c:1745 #20 0x000056140a6d4721 in PostmasterMain (argc=3, argv=0x56140bc73540) at postmaster.c:1417 #21 0x000056140a5c3f0c in main (argc=3, argv=0x56140bc73540) at main.c:209 without CONCURRENTLY I get: ERROR: relation "seq" is not a partition of relation "range_parted" This error is also returned on a build without asserts.
pgsql-bugs by date:
Previous
From: Yura SokolovDate:
Subject: Re: BUG #17335: Duplicate result rows in Gather node when "Suppress Append ... that have a single child" applied
Next
From: Yura SokolovDate:
Subject: Re: BUG #17335: Duplicate result rows in Gather node when "Suppress Append ... that have a single child" applied