From 8fa3eae996f4ace3b17b41ba69530392f8ea1c06 Mon Sep 17 00:00:00 2001 From: Eric Hanson <5846501+ericphanson@users.noreply.github.com> Date: Thu, 21 Apr 2022 14:34:15 +0200 Subject: [PATCH] tweak UnknownSchemaError language (#38) * tweak UnknownSchemaError language In some Beacon-internal code, I'm using TOML as a serialization format for small tables. You can get UnknownSchemaErrors, which are then confusing if they tell you to `Arrow.Table` it. Co-authored-by: Jarrett Revels --- src/rows.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rows.jl b/src/rows.jl index 751ca85..6e2964c 100644 --- a/src/rows.jl +++ b/src/rows.jl @@ -119,7 +119,7 @@ function Base.showerror(io::IO, e::UnknownSchemaError) your environment is as expected). Note that if you're in this particular situation, you can still load - the raw Arrow table as-is via `Arrow.Table`. + the raw table as-is without Legolas; e.g., to load an Arrow table, call `Arrow.Table(path)`. """) return nothing end