AddAuth — Fügt einen Berechtigungsschlüssel für die aktuelle Transaktion hinzu.
boolean AddAuth(
text auth_token)
;
Fügt einen Berechtigungsschlüssel für die aktuelle Transaktion hinzu.
Adds the current transaction identifier and authorization token to a temporary table called temp_lock_have_table
.
Verfügbarkeit: 1.1.3
SELECT LockRow('towns', '353', 'priscilla'); BEGIN TRANSACTION; SELECT AddAuth('joey'); UPDATE towns SET geom = ST_Translate(geom,2,2) WHERE gid = 353; COMMIT; ---Error-- ERROR: UPDATE where "gid" = '353' requires authorization 'priscilla'