What’s the most performant way to get a vector of dicts into a Tables.jl table?
For example,
data = [
Dict("id" => 1, "name" => "Bob"),
Dict("id" => 2, "name" => "Bill"),
Dict("id" => 3, "name" => "Betty"),
Dict("id" => 4, "name" => "Beatrice"),
Dict("id" => 5, "name" => "Bernadette")
]