1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Handle Procedure calls.

Now the version is 7.01.0006.
This commit is contained in:
Hiroshi Inoue
2001-06-27 07:38:07 +00:00
parent ef20f0ce25
commit bbca11bf3b
6 changed files with 63 additions and 8 deletions

View File

@ -98,6 +98,7 @@ enum
STMT_TYPE_DROP,
STMT_TYPE_GRANT,
STMT_TYPE_REVOKE,
STMT_TYPE_PROCCALL
};
#define STMT_UPDATE(stmt) (stmt->statement_type > STMT_TYPE_SELECT)