BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

Started by Rémi Aubelabout 8 years ago12 messagesbugs
Jump to latest
#1Rémi Aubel
remi.aubel@gmail.com

I need to bind a UUID parameter which may be null in a statement like
"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR: could
not determine data type of parameter $1".

See the code here: https://ideone.com/DKnqa9

When run, it gives the output below:
JDBC Driver Version: 42.2.1
PostgreSQL version: PostgreSQL 9.5.9 on x86_64-pc-linux-gnu, compiled by
gcc (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609, 64-bit
setNull(varchar) + setObject(null) => works
setNull(other) + setNull(other) => fails (ERROR: could not determine data
type of parameter $1)
setNull(other, uuid) + setNull(other, uuid) => fails (ERROR: could not
determine data type of parameter $1)

The third case (last line above) uses method PreparedStatement.setNull(pos,
type, typeName) and should work.
But in the current implementation of the driver, the
PreparedStatement.setNull(int, int, String) delegates to setNull(int, int)
so that specifying the type name has no effect.
--

#2David G. Johnston
david.g.johnston@gmail.com
In reply to: Rémi Aubel (#1)
Re: BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

On Wed, Mar 28, 2018 at 6:26 AM, Rémi Aubel <remi.aubel@gmail.com> wrote:

I need to bind a UUID parameter which may be null in a statement like
"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR: could
not determine data type of parameter $1".
​[...]​
But in the current implementation of the driver, the
PreparedStatement.setNull(int, int, String) delegates to setNull(int, int)
so that specifying the type name has no effect.

​JDBC Driver bugs are off-topic for this list. They should be reported on
the project's GitHub site's Issues List.

David J.

#3Dave Cramer
pg@fastcrypt.com
In reply to: David G. Johnston (#2)
Re: BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

Remi,

See https://github.com/pgjdbc/pgjdbc/pull/1160

Dave Cramer

On 28 March 2018 at 09:59, David G. Johnston <david.g.johnston@gmail.com>
wrote:

Show quoted text

On Wed, Mar 28, 2018 at 6:26 AM, Rémi Aubel <remi.aubel@gmail.com> wrote:

I need to bind a UUID parameter which may be null in a statement like
"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR: could
not determine data type of parameter $1".
​[...]​
But in the current implementation of the driver, the
PreparedStatement.setNull(int, int, String) delegates to setNull(int, int)
so that specifying the type name has no effect.

​JDBC Driver bugs are off-topic for this list. They should be reported on
the project's GitHub site's Issues List.

David J.

#4Rémi Aubel
remi.aubel@gmail.com
In reply to: Dave Cramer (#3)
Re: BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

Oh Thanks, Dave!
I had created the issue on GitHub (
https://github.com/pgjdbc/pgjdbc/issues/1161) and saw you marked it as
duplicate.

Le mer. 28 mars 2018 à 16:12, Dave Cramer <davecramer@gmail.com> a écrit :

Show quoted text

Remi,

See https://github.com/pgjdbc/pgjdbc/pull/1160

Dave Cramer

On 28 March 2018 at 09:59, David G. Johnston <david.g.johnston@gmail.com>
wrote:

On Wed, Mar 28, 2018 at 6:26 AM, Rémi Aubel <remi.aubel@gmail.com> wrote:

I need to bind a UUID parameter which may be null in a statement like
"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR:
could not determine data type of parameter $1".
​[...]​
But in the current implementation of the driver, the
PreparedStatement.setNull(int, int, String) delegates to setNull(int, int)
so that specifying the type name has no effect.

​JDBC Driver bugs are off-topic for this list. They should be reported
on the project's GitHub site's Issues List.

David J.

--

#5Dave Cramer
pg@fastcrypt.com
In reply to: Rémi Aubel (#4)
Re: BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

@Remi,

You are welcome. It would be wonderful it you could test the fix ?

Dave Cramer

On 28 March 2018 at 10:25, Rémi Aubel <remi.aubel@gmail.com> wrote:

Show quoted text

Oh Thanks, Dave!
I had created the issue on GitHub (https://github.com/pgjdbc/
pgjdbc/issues/1161) and saw you marked it as duplicate.

Le mer. 28 mars 2018 à 16:12, Dave Cramer <davecramer@gmail.com> a écrit :

Remi,

See https://github.com/pgjdbc/pgjdbc/pull/1160

Dave Cramer

On 28 March 2018 at 09:59, David G. Johnston <david.g.johnston@gmail.com>
wrote:

On Wed, Mar 28, 2018 at 6:26 AM, Rémi Aubel <remi.aubel@gmail.com>
wrote:

I need to bind a UUID parameter which may be null in a statement like
"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR:
could not determine data type of parameter $1".
​[...]​
But in the current implementation of the driver, the
PreparedStatement.setNull(int, int, String) delegates to setNull(int, int)
so that specifying the type name has no effect.

​JDBC Driver bugs are off-topic for this list. They should be reported
on the project's GitHub site's Issues List.

David J.

--

#6Tom Lane
tgl@sss.pgh.pa.us
In reply to: Rémi Aubel (#1)
Re: BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

=?UTF-8?Q?R=C3=A9mi_Aubel?= <remi.aubel@gmail.com> writes:

I need to bind a UUID parameter which may be null in a statement like
"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR: could
not determine data type of parameter $1".

Some experimentation suggests that it'd probably work if you wrote the
clauses in the other order:

regression=# create table test_table (c_uuid uuid);
CREATE TABLE
regression=# prepare foo as select * from test_table where $1 is null or $1 = c_uuid;
ERROR: could not determine data type of parameter $1
LINE 1: prepare foo as select * from test_table where $1 is null or ...
^
regression=# prepare foo as select * from test_table where $1 = c_uuid or $1 is null;
PREPARE

In an ideal world, perhaps the order of the parameter references would not
matter, but AFAICS making that work would be mighty hard. For now, PG's
parser wants to resolve the type of an otherwise-unlabeled parameter
symbol the first time it sees it --- and the context "IS NULL" offers
no clue what type it should be.

Alternatively, you could force the issue with an explicit cast in the
text of the query:

regression=# prepare foo2 as select * from test_table where $1::uuid is null or $1 = c_uuid;
PREPARE

regards, tom lane

#7Dave Cramer
pg@fastcrypt.com
In reply to: Tom Lane (#6)
Re: BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

On 28 March 2018 at 10:30, Tom Lane <tgl@sss.pgh.pa.us> wrote:

=?UTF-8?Q?R=C3=A9mi_Aubel?= <remi.aubel@gmail.com> writes:

I need to bind a UUID parameter which may be null in a statement like
"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR: could
not determine data type of parameter $1".

Some experimentation suggests that it'd probably work if you wrote the
clauses in the other order:

regression=# create table test_table (c_uuid uuid);
CREATE TABLE
regression=# prepare foo as select * from test_table where $1 is null or
$1 = c_uuid;
ERROR: could not determine data type of parameter $1
LINE 1: prepare foo as select * from test_table where $1 is null or ...
^
regression=# prepare foo as select * from test_table where $1 = c_uuid or
$1 is null;
PREPARE

In an ideal world, perhaps the order of the parameter references would not
matter, but AFAICS making that work would be mighty hard. For now, PG's
parser wants to resolve the type of an otherwise-unlabeled parameter
symbol the first time it sees it --- and the context "IS NULL" offers
no clue what type it should be.

Alternatively, you could force the issue with an explicit cast in the
text of the query:

regression=# prepare foo2 as select * from test_table where $1::uuid is
null or $1 = c_uuid;
PREPARE

Tom,

This is just a simple example of a bigger problem. One for which there is a
solution in the driver which was not implemented.

I have implemented it now.

Thanks,

Dave

#8Rémi Aubel
remi.aubel@gmail.com
In reply to: Dave Cramer (#7)
Re: BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

@Dave,

I have just tested it. It works fine with setNull(_, 1111, "uuid").
Thanks again :-)

Rémi

Le mer. 28 mars 2018 à 16:38, Dave Cramer <davecramer@gmail.com> a écrit :

On 28 March 2018 at 10:30, Tom Lane <tgl@sss.pgh.pa.us> wrote:

=?UTF-8?Q?R=C3=A9mi_Aubel?= <remi.aubel@gmail.com> writes:

I need to bind a UUID parameter which may be null in a statement like
"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR:

could

not determine data type of parameter $1".

Some experimentation suggests that it'd probably work if you wrote the
clauses in the other order:

regression=# create table test_table (c_uuid uuid);
CREATE TABLE
regression=# prepare foo as select * from test_table where $1 is null or
$1 = c_uuid;
ERROR: could not determine data type of parameter $1
LINE 1: prepare foo as select * from test_table where $1 is null or ...
^
regression=# prepare foo as select * from test_table where $1 = c_uuid or
$1 is null;
PREPARE

In an ideal world, perhaps the order of the parameter references would not
matter, but AFAICS making that work would be mighty hard. For now, PG's
parser wants to resolve the type of an otherwise-unlabeled parameter
symbol the first time it sees it --- and the context "IS NULL" offers
no clue what type it should be.

Alternatively, you could force the issue with an explicit cast in the
text of the query:

regression=# prepare foo2 as select * from test_table where $1::uuid is
null or $1 = c_uuid;
PREPARE

Tom,

This is just a simple example of a bigger problem. One for which there is
a solution in the driver which was not implemented.

I have implemented it now.

Thanks,

Dave

--

#9Rémi Aubel
remi.aubel@gmail.com
In reply to: Rémi Aubel (#8)
Re: BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

Hello,

Do you know when the next driver release (including fix
https://github.com/pgjdbc/pgjdbc/pull/1160) is expected?

Rémi

Le mer. 28 mars 2018 à 17:08, Rémi Aubel <remi.aubel@gmail.com> a écrit :

Show quoted text

@Dave,

I have just tested it. It works fine with setNull(_, 1111, "uuid").
Thanks again :-)

Rémi

Le mer. 28 mars 2018 à 16:38, Dave Cramer <davecramer@gmail.com> a écrit :

On 28 March 2018 at 10:30, Tom Lane <tgl@sss.pgh.pa.us> wrote:

=?UTF-8?Q?R=C3=A9mi_Aubel?= <remi.aubel@gmail.com> writes:

I need to bind a UUID parameter which may be null in a statement like
"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR:

could

not determine data type of parameter $1".

Some experimentation suggests that it'd probably work if you wrote the
clauses in the other order:

regression=# create table test_table (c_uuid uuid);
CREATE TABLE
regression=# prepare foo as select * from test_table where $1 is null or
$1 = c_uuid;
ERROR: could not determine data type of parameter $1
LINE 1: prepare foo as select * from test_table where $1 is null or ...
^
regression=# prepare foo as select * from test_table where $1 = c_uuid
or $1 is null;
PREPARE

In an ideal world, perhaps the order of the parameter references would
not
matter, but AFAICS making that work would be mighty hard. For now, PG's
parser wants to resolve the type of an otherwise-unlabeled parameter
symbol the first time it sees it --- and the context "IS NULL" offers
no clue what type it should be.

Alternatively, you could force the issue with an explicit cast in the
text of the query:

regression=# prepare foo2 as select * from test_table where $1::uuid is
null or $1 = c_uuid;
PREPARE

Tom,

This is just a simple example of a bigger problem. One for which there is
a solution in the driver which was not implemented.

I have implemented it now.

Thanks,

Dave

--

--

#10Dave Cramer
pg@fastcrypt.com
In reply to: Rémi Aubel (#9)
Re: BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

Hi Remi,

https://github.com/pgjdbc/pgjdbc/milestones approximately.

Dave Cramer

On 3 April 2018 at 06:29, Rémi Aubel <remi.aubel@gmail.com> wrote:

Show quoted text

Hello,

Do you know when the next driver release (including fix
https://github.com/pgjdbc/pgjdbc/pull/1160) is expected?

Rémi

Le mer. 28 mars 2018 à 17:08, Rémi Aubel <remi.aubel@gmail.com> a écrit :

@Dave,

I have just tested it. It works fine with setNull(_, 1111, "uuid").
Thanks again :-)

Rémi

Le mer. 28 mars 2018 à 16:38, Dave Cramer <davecramer@gmail.com> a
écrit :

On 28 March 2018 at 10:30, Tom Lane <tgl@sss.pgh.pa.us> wrote:

=?UTF-8?Q?R=C3=A9mi_Aubel?= <remi.aubel@gmail.com> writes:

I need to bind a UUID parameter which may be null in a statement like
"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR:

could

not determine data type of parameter $1".

Some experimentation suggests that it'd probably work if you wrote the
clauses in the other order:

regression=# create table test_table (c_uuid uuid);
CREATE TABLE
regression=# prepare foo as select * from test_table where $1 is null
or $1 = c_uuid;
ERROR: could not determine data type of parameter $1
LINE 1: prepare foo as select * from test_table where $1 is null or ...
^
regression=# prepare foo as select * from test_table where $1 = c_uuid
or $1 is null;
PREPARE

In an ideal world, perhaps the order of the parameter references would
not
matter, but AFAICS making that work would be mighty hard. For now, PG's
parser wants to resolve the type of an otherwise-unlabeled parameter
symbol the first time it sees it --- and the context "IS NULL" offers
no clue what type it should be.

Alternatively, you could force the issue with an explicit cast in the
text of the query:

regression=# prepare foo2 as select * from test_table where $1::uuid is
null or $1 = c_uuid;
PREPARE

Tom,

This is just a simple example of a bigger problem. One for which there
is a solution in the driver which was not implemented.

I have implemented it now.

Thanks,

Dave

--

--

#11Rémi Aubel
remi.aubel@gmail.com
In reply to: Dave Cramer (#10)
Re: BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

Thanks

Le mar. 3 avr. 2018 à 12:43, Dave Cramer <davecramer@gmail.com> a écrit :

Show quoted text

Hi Remi,

https://github.com/pgjdbc/pgjdbc/milestones approximately.

Dave Cramer

On 3 April 2018 at 06:29, Rémi Aubel <remi.aubel@gmail.com> wrote:

Hello,

Do you know when the next driver release (including fix
https://github.com/pgjdbc/pgjdbc/pull/1160) is expected?

Rémi

Le mer. 28 mars 2018 à 17:08, Rémi Aubel <remi.aubel@gmail.com> a écrit :

@Dave,

I have just tested it. It works fine with setNull(_, 1111, "uuid").
Thanks again :-)

Rémi

Le mer. 28 mars 2018 à 16:38, Dave Cramer <davecramer@gmail.com> a
écrit :

On 28 March 2018 at 10:30, Tom Lane <tgl@sss.pgh.pa.us> wrote:

=?UTF-8?Q?R=C3=A9mi_Aubel?= <remi.aubel@gmail.com> writes:

I need to bind a UUID parameter which may be null in a statement like
"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR:

could

not determine data type of parameter $1".

Some experimentation suggests that it'd probably work if you wrote the
clauses in the other order:

regression=# create table test_table (c_uuid uuid);
CREATE TABLE
regression=# prepare foo as select * from test_table where $1 is null
or $1 = c_uuid;
ERROR: could not determine data type of parameter $1
LINE 1: prepare foo as select * from test_table where $1 is null or ...
^
regression=# prepare foo as select * from test_table where $1 = c_uuid
or $1 is null;
PREPARE

In an ideal world, perhaps the order of the parameter references would
not
matter, but AFAICS making that work would be mighty hard. For now,
PG's
parser wants to resolve the type of an otherwise-unlabeled parameter
symbol the first time it sees it --- and the context "IS NULL" offers
no clue what type it should be.

Alternatively, you could force the issue with an explicit cast in the
text of the query:

regression=# prepare foo2 as select * from test_table where $1::uuid
is null or $1 = c_uuid;
PREPARE

Tom,

This is just a simple example of a bigger problem. One for which there
is a solution in the driver which was not implemented.

I have implemented it now.

Thanks,

Dave

--

--

--

#12Rémi Aubel
remi.aubel@gmail.com
In reply to: Rémi Aubel (#11)
Re: BUG: Unable to bind a null value typed as a UUID in a PreparedStatement

Hi all,

Do you have any update about the release date for driver 42.2.3?

Rémi

Le mar. 3 avr. 2018 à 13:19, Rémi Aubel <remi.aubel@gmail.com> a écrit :

Show quoted text

Thanks

Le mar. 3 avr. 2018 à 12:43, Dave Cramer <davecramer@gmail.com> a écrit :

Hi Remi,

https://github.com/pgjdbc/pgjdbc/milestones approximately.

Dave Cramer

On 3 April 2018 at 06:29, Rémi Aubel <remi.aubel@gmail.com> wrote:

Hello,

Do you know when the next driver release (including fix
https://github.com/pgjdbc/pgjdbc/pull/1160) is expected?

Rémi

Le mer. 28 mars 2018 à 17:08, Rémi Aubel <remi.aubel@gmail.com> a
écrit :

@Dave,

I have just tested it. It works fine with setNull(_, 1111, "uuid").
Thanks again :-)

Rémi

Le mer. 28 mars 2018 à 16:38, Dave Cramer <davecramer@gmail.com> a
écrit :

On 28 March 2018 at 10:30, Tom Lane <tgl@sss.pgh.pa.us> wrote:

=?UTF-8?Q?R=C3=A9mi_Aubel?= <remi.aubel@gmail.com> writes:

I need to bind a UUID parameter which may be null in a statement

like

"select * from test table where ? is null or ? = c_uuid".
Whatever approach I use, the driver rejects my request with "ERROR:

could

not determine data type of parameter $1".

Some experimentation suggests that it'd probably work if you wrote the
clauses in the other order:

regression=# create table test_table (c_uuid uuid);
CREATE TABLE
regression=# prepare foo as select * from test_table where $1 is null
or $1 = c_uuid;
ERROR: could not determine data type of parameter $1
LINE 1: prepare foo as select * from test_table where $1 is null or
...
^
regression=# prepare foo as select * from test_table where $1 =
c_uuid or $1 is null;
PREPARE

In an ideal world, perhaps the order of the parameter references
would not
matter, but AFAICS making that work would be mighty hard. For now,
PG's
parser wants to resolve the type of an otherwise-unlabeled parameter
symbol the first time it sees it --- and the context "IS NULL" offers
no clue what type it should be.

Alternatively, you could force the issue with an explicit cast in the
text of the query:

regression=# prepare foo2 as select * from test_table where $1::uuid
is null or $1 = c_uuid;
PREPARE

Tom,

This is just a simple example of a bigger problem. One for which there
is a solution in the driver which was not implemented.

I have implemented it now.

Thanks,

Dave

--

--

--

--