We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 272a6d8 commit 9e92853Copy full SHA for 9e92853
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## Next version
4
- Allow casts between `int4` and `int8`.
5
- Allow more metadata discovery queries.
6
+ - Allow more statement types.
7
8
## Version 1.0.1
9
- Fixed some docs links.
src/query/validation.c
@@ -51,6 +51,8 @@ void verify_utility_command(Node *utility_stmt)
51
case T_LockStmt:
52
case T_CheckPointStmt:
53
case T_DeclareCursorStmt:
54
+ case T_DeallocateStmt:
55
+ case T_FetchStmt:
56
break;
57
default:
58
FAILWITH("Statement requires direct access level.");
0 commit comments