Skip to content

Commit

Permalink
Fix delta export azure example (#7546)
Browse files Browse the repository at this point in the history
  • Loading branch information
N-o-Z authored Mar 12, 2024
1 parent 1706a19 commit d31e830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/hooks/delta_lake_azure_export.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ local function write_object(_, key, buf)
return sc.put_object(key,buf)
end
local delta_client = formats.delta_client(args.lakefs.access_key_id, args.lakefs.secret_access_key)
local delta_table_details = delta_exporter.export_delta_log(action, args.table_names, write_object, delta_client, table_descriptors_path)
local delta_table_details = delta_exporter.export_delta_log(action, args.table_defs, write_object, delta_client, table_descriptors_path)

for t, details in pairs(delta_table_details) do
print("Delta Lake exported table \"" .. t .. "\"'s location: " .. details["path"] .. "\n")
Expand Down

0 comments on commit d31e830

Please sign in to comment.