Skip to content

Commit 9e92853

Browse files
Allow more statement types.
1 parent 272a6d8 commit 9e92853

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Next version
44
- Allow casts between `int4` and `int8`.
55
- Allow more metadata discovery queries.
6+
- Allow more statement types.
67

78
## Version 1.0.1
89
- Fixed some docs links.

src/query/validation.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ void verify_utility_command(Node *utility_stmt)
5151
case T_LockStmt:
5252
case T_CheckPointStmt:
5353
case T_DeclareCursorStmt:
54+
case T_DeallocateStmt:
55+
case T_FetchStmt:
5456
break;
5557
default:
5658
FAILWITH("Statement requires direct access level.");

0 commit comments

Comments
 (0)