mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-21 03:13:05 +08:00
Remove too demanding test
Remove the test from commit 9c2e660b07
. This test ends up allocating
quite a bit of memory, which can make the test fail with out of memory
errors on some build farm machines.
This commit is contained in:
parent
9c2e660b07
commit
da3ea048ca
@ -184,11 +184,6 @@ SELECT name, statement, parameter_types, result_types FROM pg_prepared_statement
|
||||
| UPDATE tenk1 SET stringu1 = $2 WHERE unique1 = $1; | |
|
||||
(6 rows)
|
||||
|
||||
-- max parameter number and one above
|
||||
PREPARE q9 AS SELECT $268435455, $268435456;
|
||||
ERROR: there is no parameter $268435456
|
||||
LINE 1: PREPARE q9 AS SELECT $268435455, $268435456;
|
||||
^
|
||||
-- test DEALLOCATE ALL;
|
||||
DEALLOCATE ALL;
|
||||
SELECT name, statement, parameter_types FROM pg_prepared_statements
|
||||
|
@ -78,9 +78,6 @@ PREPARE q8 AS
|
||||
SELECT name, statement, parameter_types, result_types FROM pg_prepared_statements
|
||||
ORDER BY name;
|
||||
|
||||
-- max parameter number and one above
|
||||
PREPARE q9 AS SELECT $268435455, $268435456;
|
||||
|
||||
-- test DEALLOCATE ALL;
|
||||
DEALLOCATE ALL;
|
||||
SELECT name, statement, parameter_types FROM pg_prepared_statements
|
||||
|
Loading…
Reference in New Issue
Block a user