Name

AddAuth — Adiciona um token de autorização para ser usado em transação atual.

Synopsis

boolean AddAuth(text auth_token);

Descrição

Adiciona um token de autorização para ser usado em transação atual.

Adds the current transaction identifier and authorization token to a temporary table called temp_lock_have_table.

Disponibilitade: 1.1.3

Exemplos

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'
                

Veja também

LockRow