IGNITE-6692 Select query on a client with unused field throws an exception.

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

IGNITE-6692 Select query on a client with unused field throws an exception.

Nikita Amelchev
Hello, Igniters.

I found a bug when I execute next queries on the client:

CREATE TABLE t1 (name VARCHAR(1), unused LONG, PRIMARY KEY(name));
INSERT INTO t1 (name) values ('A');
SELECT name FROM t1 ORDER BY name, unused;

The latest query throws exception like "BinaryObjectException: Cannot find
schema for object with compact footer [typeId=-1289534525, schemaId=0]"

Is it a bug? Does anybody fix it right now?


--
Best wishes,
Amelchev Nikita
Reply | Threaded
Open this post in threaded view
|

Re: IGNITE-6692 Select query on a client with unused field throws an exception.

Vladimir Ozerov
Hi Nikita,

Appears to be a bug. Could you please file a ticket with reproducer?

On Fri, Oct 20, 2017 at 3:56 PM, Nikita Amelchev <[hidden email]>
wrote:

> Hello, Igniters.
>
> I found a bug when I execute next queries on the client:
>
> CREATE TABLE t1 (name VARCHAR(1), unused LONG, PRIMARY KEY(name));
> INSERT INTO t1 (name) values ('A');
> SELECT name FROM t1 ORDER BY name, unused;
>
> The latest query throws exception like "BinaryObjectException: Cannot find
> schema for object with compact footer [typeId=-1289534525, schemaId=0]"
>
> Is it a bug? Does anybody fix it right now?
>
>
> --
> Best wishes,
> Amelchev Nikita
>
Reply | Threaded
Open this post in threaded view
|

Re: IGNITE-6692 Select query on a client with unused field throws an exception.

Nikita Amelchev
I've attached reproducer to the issue [1].

1. https://issues.apache.org/jira/browse/IGNITE-6692

2017-10-20 16:05 GMT+03:00 Vladimir Ozerov <[hidden email]>:

> Hi Nikita,
>
> Appears to be a bug. Could you please file a ticket with reproducer?
>
> On Fri, Oct 20, 2017 at 3:56 PM, Nikita Amelchev <[hidden email]>
> wrote:
>
> > Hello, Igniters.
> >
> > I found a bug when I execute next queries on the client:
> >
> > CREATE TABLE t1 (name VARCHAR(1), unused LONG, PRIMARY KEY(name));
> > INSERT INTO t1 (name) values ('A');
> > SELECT name FROM t1 ORDER BY name, unused;
> >
> > The latest query throws exception like "BinaryObjectException: Cannot
> find
> > schema for object with compact footer [typeId=-1289534525, schemaId=0]"
> >
> > Is it a bug? Does anybody fix it right now?
> >
> >
> > --
> > Best wishes,
> > Amelchev Nikita
> >
>



--
Best wishes,
Amelchev Nikita