Documentação do PostgreSQL 7.4.1 | ||||
---|---|---|---|---|
Anterior | Início | Capítulo 41. Server Programming Interface | Fim | Próxima |
The following two rules govern the visibility of data changes in functions that use SPI (or any other C function):
INSERT INTO a SELECT * FROM a;the inserted rows are invisible to the SELECT part.
The next section contains an example that illustrates the application of these rules.