mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Get rid of the following size limit.
1) Query size limit(was 65536) for >=7.0 servers. 2) Text size limit(was 8190) for 7.1 servers.
This commit is contained in:
@ -210,9 +210,10 @@ struct StatementClass_
|
||||
|
||||
char cursor_name[MAX_CURSOR_LEN + 1];
|
||||
|
||||
char stmt_with_params[STD_STATEMENT_LEN]; /* statement after
|
||||
char *stmt_with_params; /* statement after
|
||||
* parameter
|
||||
* substitution */
|
||||
int stmt_size_limit;
|
||||
|
||||
char pre_executing; /* This statement is prematurely executing */
|
||||
char inaccurate_result; /* Current status is PREMATURE but
|
||||
|
Reference in New Issue
Block a user