Reputation: 11
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
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