Skip to content

Commit

Permalink
schema fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbie1977 committed Jul 6, 2024
1 parent 013a8e1 commit 19a04a6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public QueryResults process(ProcessQuery query, DataSource dataSource, Variable

if (debug) {
System.out.println("CachedUploadNBLASTQueryProcessor processing " + results.getResults().size() + " rows");
System.out.println("CachedUploadNBLASTQueryProcessor loaded: " + results.getValues().toString());
System.out.println("CachedUploadNBLASTQueryProcessor loaded: " + results.getResults()[0].getValues().toString());
}

// Set headers
Expand All @@ -131,7 +131,7 @@ public QueryResults process(ProcessQuery query, DataSource dataSource, Variable
Variable imageVariable = VariablesFactory.eINSTANCE.createVariable();

// Process each result
int rowCount = results.getValues().size();
int rowCount = results.getResults()[0].getValues().size();
for (int i = 0; i < rowCount; i++) {
try {
// Determine loaded template
Expand Down

0 comments on commit 19a04a6

Please sign in to comment.