remove row to col function
This commit is contained in:
@@ -1005,16 +1005,6 @@ function _deserialize_data(
|
||||
end
|
||||
end
|
||||
|
||||
function rows_to_columns_dict(rows::Vector{Dict{Symbol,Any}})
|
||||
# Ensure rows is not empty
|
||||
isempty(rows) && return Dict{Symbol,Vector{Any}}()
|
||||
|
||||
# Build column-oriented dictionary
|
||||
return Dict(
|
||||
key => [get(row, key, missing) for row in rows]
|
||||
for key in keys(rows[1])
|
||||
)
|
||||
end
|
||||
|
||||
""" plik_oneshot_upload - Upload a single file to a plik server using one-shot mode
|
||||
This function uploads a raw byte array to a plik server in one-shot mode (no upload session).
|
||||
|
||||
Reference in New Issue
Block a user