function Base.show()

in src/show.jl [33:64]


function Base.show(io::IO, mime::MIME"text/plain", table::Table)
    display_rows, display_cols = displaysize(io)
    ncols = length(Tables.columnnames(table))
    meta = getmetadata(table)
    if meta !== nothing
        display_rows -= 1 
        display_rows -= min(length(meta), 2) 
    end
    print(
        io,
        "$(typeof(table)) with $(Tables.rowcount(table)) rows, $(ncols) columns, and ",
    )
    sch = Tables.schema(table)
    print(io, "schema:\n")
    schema_context = IOContext(
        io,
        :print_schema_header => false,
        :displaysize => (max(display_rows, 3), display_cols),
    )
    schema_str = sprint(show, mime, sch; context=schema_context)
    print(io, schema_str)
    display_rows -= (count("\n", schema_str) + 1) 
    if meta !== nothing
        print(io, "\n\nwith metadata given by a ")
        show(
            IOContext(io, :displaysize => (max(display_rows, 5), display_cols)),
            mime,
            meta,
        )
    end
    return nothing
end