]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Avoid naming conflict between transactions.sql and namespace.sql.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 19 May 2023 14:57:46 +0000 (10:57 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 19 May 2023 14:57:46 +0000 (10:57 -0400)
commit7d3c0b1f8f511be49062a3d3e47f427d076bd35e
tree513970dd81d242ac1261097794aefa1f1813318d
parent6c512fc6e90d7f0be99090fa084c01418dfe80b3
Avoid naming conflict between transactions.sql and namespace.sql.

Commits 681d9e462 et al added a test case in namespace.sql that
implicitly relied on there not being a table "public.abc".
However, the concurrently-run transactions.sql test creates precisely
such a table, so with the right timing you'd get a failure.
Creating a table named as generically as "abc" in a common schema
seems like bad practice, so fix this by changing the name of
transactions.sql's table.  (Compare 2cf8c7aa4.)

Marina Polyakova

Discussion: https://postgr.es/m/80d0201636665d82185942e7112257b4@postgrespro.ru
src/test/regress/expected/transactions.out
src/test/regress/sql/transactions.sql