Skip to content

Commit

Permalink
fix(tasks): include all result on the outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Oct 11, 2023
1 parent cfe8ee5 commit e431005
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.kestra.plugin.jdbc;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.ObjectMapper;
import io.kestra.core.models.executions.metrics.Counter;
import io.kestra.core.models.tasks.Task;
Expand Down Expand Up @@ -195,6 +196,7 @@ public static class Output implements io.kestra.core.models.tasks.Output {
title = "Map containing the first row of fetched data",
description = "Only populated if 'fetchOne' parameter is set to true."
)
@JsonInclude
private final Map<String, Object> row;

@Schema(
Expand Down

0 comments on commit e431005

Please sign in to comment.