Postgres 9.0.4 with Serverside PreparedStatements never returns with large tables

From: Mike O <mcanix(at)gmail(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: Postgres 9.0.4 with Serverside PreparedStatements never returns with large tables
Date: 2014-02-12 08:10:58
Message-ID: 4D32D385-5CB4-4A04-B25B-85656C0EC492@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

All,

I've experienced a problem with the following conditions:

PostgreSQL Server 9.0.4 (fine on 9.1.10)
JDBC (Any version)
Serverside prepared statements (prepareThreshold=1)
A very large table (30,000,000+ rows) with indexes on int columns
Java (any version)

The problem is that the serverside prepared statement doesn't return in good time when querying a large table.

<massive_assumption> It seems that the serverside prepared statement tries to do something fancy around the parameterised arguments type inference and casts the arguments as text or varchar which results in the query not returning on time because it's using a seqscan rather than an index scan. </massive_assumption>

If I set the protocolVersion = 2 then it works fine (assuming I pass ints to the setObject or setInt functions)

I've tried the following connection parameters (in different configurations) which didn't work:

prepareThreshold=1
stringType=unspecified
protocolVersion=3

The following connection parameters worked (either/or):

prepareThreshold=0
protocolVersion=2

Can anyone confirm or deny this bug/issue/feature?

I've attached a test class - adjust the query and comment out the properties as you see fit (Obviously the large data set is going to be a problem).

Kind regards,

Mike O'Connell

--

If you don't know where you are going, any road will get you there.

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Dave Cramer 2014-02-12 11:41:49 Re: JDBC PostgreSQL Stored Procedure Meta-data
Previous Message Peter Damen 2014-02-12 00:32:15 JDBC PostgreSQL Stored Procedure Meta-data