remove row to col function

This commit is contained in:
2026-03-08 13:13:41 +07:00
parent 89a72cf8a9
commit 3970b8e0a8

View File

@@ -1005,16 +1005,6 @@ function _deserialize_data(
end end
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 """ 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). This function uploads a raw byte array to a plik server in one-shot mode (no upload session).