Duckex.Result (duckex v0.1.0)

Result struct returned from any successful query. Its fields are:

  • columns - list of field names in form of [name, type]
  • rows - list of rows, each row is represented as list of fields that corresponds to :column order
  • num_rows - count of rows in :rows field

Summary

Types

t()

@type t() :: %Duckex.Result{
  columns: [[String.t()]],
  num_rows: integer(),
  rows: [[any()]]
}