Skip to content

Commit

Permalink
Re-adds the OK! for successful queries
Browse files Browse the repository at this point in the history
  • Loading branch information
johnedquinn committed Nov 30, 2023
1 parent 7441141 commit dff43e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ internal class RunnableWriter(
} catch (t: Throwable) { printThrowable(t) }
is RunnablePipeline.Output.Error -> printThrowable(value.throwable)
}
out.println()
out.flush()
donePrinting.set(true)
}
Expand All @@ -66,6 +65,7 @@ internal class RunnableWriter(
formatter.formatTo(result.value, out)
out.println()
out.info(BAR_2)
out.success("OK!")
}
is PartiQLResult.Explain.Domain -> {
val explain = ExplainFormatter.format(result)
Expand Down

0 comments on commit dff43e8

Please sign in to comment.