Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,8 @@ public List<List<Object>> asRowBinary( Predicate<LogId> filter, String... header

for( LogId id : outputs.keySet() ) {
if( filter.test( id ) ) {

String[] queryHeader = headers.length == 0 ? id.headers : headers;

ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream( outputs.getOrDefault( id, new ByteArrayOutputStream() ).toByteArray() );
RowBinaryInputStream rowBinaryInputStream = new RowBinaryInputStream( byteArrayInputStream, queryHeader, id.types );
RowBinaryInputStream rowBinaryInputStream = new RowBinaryInputStream( byteArrayInputStream, id.headers, id.types );

List<Object> objects;
while( ( objects = rowBinaryInputStream.readRow() ) != null ) {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
</distributionManagement>

<properties>
<oap.project.version>25.4.3</oap.project.version>
<oap.project.version>25.4.4</oap.project.version>

<oap.deps.config.version>25.0.1</oap.deps.config.version>
<oap.deps.oap-teamcity.version>25.0.0</oap.deps.oap-teamcity.version>
Expand Down