View Source ReqAthena.Result (ReqAthena v0.1.0)

Result struct returned from any successful query.

Its fields are:

  • columns - The column names;
  • rows - The result set. A list of lists, each inner list corresponding to a row, each element in the inner list corresponds to a column;
  • statement_name - The statement name from executed query;
  • query_execution_id - The id from executed query;
  • output_location - The S3 url location where the result was output.

Link to this section Summary

Link to this section Types

@type t() :: %ReqAthena.Result{
  columns: [String.t()],
  output_location: binary(),
  query_execution_id: binary(),
  rows: [[term()]],
  statement_name: binary()
}