Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Null returned instead of empty result in InfluxQLQueryApi.query() #744

Closed
marcinkoziarz opened this issue Jul 7, 2024 · 1 comment · Fixed by #733
Closed

Null returned instead of empty result in InfluxQLQueryApi.query() #744

marcinkoziarz opened this issue Jul 7, 2024 · 1 comment · Fixed by #733
Assignees
Milestone

Comments

@marcinkoziarz
Copy link

Steps to reproduce:

  1. Start empty Influxdb instance
  2. Create bucket named "myBucket"
  3. Request list of elements InfluxQLQueryResult result = client.getInfluxQLQueryApi().query(new InfluxQLQuery("show field keys", "myBucket"));

Expected behavior:
Code above should return empty result: result.getResults() should return an empty List.

Actual behavior:
Code returns null, despite method query(...) being annotated @NonNull.

Specifications:

  • Client Version: 7.1.0
  • InfluxDB Version: v2.7.6
  • JDK Version: openjdk 17.0.11 2024-04-16
  • Platform: ArchLinux 6.9.5-arch1-1

I believe error is somewhere in AbstractQueryApi class, in bodyConsumer (lines 118+):

        BufferedSource source = body.source();

        while(source.isOpen() && !source.exhausted() && !cancellable.wasCancelled) {
          // consumer won't be executed when body is empty
          consumer.accept(cancellable, source);
        }
@bednar
Copy link
Contributor

bednar commented Jul 8, 2024

Hi @marcinkoziarz,

Thank you for reporting this issue. We will address it in PR #733.

Best regards

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants