datu 0.3.4

datu - a data file utility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Feature: Schema

  Scenario: Schema from Parquet
    When the REPL is ran and the user types:
      ```
      read("fixtures/table.parquet") |> schema()
      ```
    Then the command should succeed

  Scenario: Schema with select
    When the REPL is ran and the user types:
      ```
      read("fixtures/table.parquet") |> select(:one, :two) |> schema()
      ```
    Then the command should succeed