mirror of
https://github.com/postgres/postgres.git
synced 2025-12-12 02:37:31 +03:00
Fix some localizability issues with existing errcontext() calls.
This commit is contained in:
@@ -1518,16 +1518,16 @@ insert into PField values ('PF1_1', 'should fail due to unique index');
|
||||
ERROR: duplicate key violates UNIQUE constraint "pfield_name"
|
||||
update PSlot set backlink = 'WS.not.there' where slotname = 'PS.base.a1';
|
||||
ERROR: WS.not.there does not exist
|
||||
CONTEXT: PL/pgSQL function tg_backlink_a line 16 at assignment
|
||||
CONTEXT: PL/pgSQL function "tg_backlink_a" line 16 at assignment
|
||||
update PSlot set backlink = 'XX.illegal' where slotname = 'PS.base.a1';
|
||||
ERROR: illegal backlink beginning with XX
|
||||
CONTEXT: PL/pgSQL function tg_backlink_a line 16 at assignment
|
||||
CONTEXT: PL/pgSQL function "tg_backlink_a" line 16 at assignment
|
||||
update PSlot set slotlink = 'PS.not.there' where slotname = 'PS.base.a1';
|
||||
ERROR: PS.not.there does not exist
|
||||
CONTEXT: PL/pgSQL function tg_slotlink_a line 16 at assignment
|
||||
CONTEXT: PL/pgSQL function "tg_slotlink_a" line 16 at assignment
|
||||
update PSlot set slotlink = 'XX.illegal' where slotname = 'PS.base.a1';
|
||||
ERROR: illegal slotlink beginning with XX
|
||||
CONTEXT: PL/pgSQL function tg_slotlink_a line 16 at assignment
|
||||
CONTEXT: PL/pgSQL function "tg_slotlink_a" line 16 at assignment
|
||||
insert into HSlot values ('HS', 'base.hub1', 1, '');
|
||||
ERROR: duplicate key violates UNIQUE constraint "hslot_name"
|
||||
insert into HSlot values ('HS', 'base.hub1', 20, '');
|
||||
|
||||
Reference in New Issue
Block a user