Remy
Remy

Reputation: 11

questDB 7.1.1 java.lang.UnsupportedOperationException

I am trying one of the latest features of QuestDB (v7.1.1).

Connecting to questdb using Npgsql in C#: the request SELECT * FROM table_partitions('F-WWCT_adc') does not work and the log report i.q.c.p.PGWireServer internal error [ex= java.lang.UnsupportedOperationException ...

The same request within questDB console works fine.

Same issue with SHOW PARTITIONS FROM 'F-WWCT_adc';

My connection is OK as other basics request (show tables, SELECT * FROM 'F-WWCT_adc', ..) are working.

I would expect the same result as the console

Did anybody has the same issue ?

Upvotes: 1

Views: 73

Answers (1)

Bolek Ziobrowski
Bolek Ziobrowski

Reputation: 395

This is a bug in table_partitions() function triggered most likely by binary mode in pg wire . This pull request should fix it.

Upvotes: 1

Related Questions