Name

AddAuth — Fügt einen Berechtigungsschlüssel für die aktuelle Transaktion hinzu.

Synopsis

boolean AddAuth(text auth_token);

Beschreibung

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

Beispiele

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'
                

Siehe auch

LockRow