@@ -173,7 +173,9 @@ local function fetch_chunk(context, state)
173173 next_func_args [4 ].after_tuple = cursor .after_tuple
174174 local mode = " read"
175175 local bucket_ids = {}
176- local func_args_ext = utils .append_array ({ box .session .effective_user (), bucket_ids , mode , func_name }, next_func_args )
176+ local func_args_ext = utils .append_array (
177+ { box .session .effective_user (), bucket_ids , mode , func_name },
178+ next_func_args )
177179
178180 if context .readview then
179181 next_state = {future = context .future_replica .conn :call (" _crud.call_on_storage" ,
@@ -206,7 +208,9 @@ local function new(vshard_router, replicasets, space, index_id, func_name, func_
206208 local net_box_opts = {is_async = true , buffer = buf ,
207209 skip_header = utils .tarantool_supports_netbox_skip_header_option () or nil }
208210 local bucket_ids = {}
209- local func_args_ext = utils .append_array ({ box .session .effective_user (), bucket_ids , mode , func_name }, func_args )
211+ local func_args_ext = utils .append_array (
212+ { box .session .effective_user (), bucket_ids , mode , func_name },
213+ func_args )
210214 local future = replicaset [vshard_call_name ](replicaset , " _crud.call_on_storage" ,
211215 func_args_ext , net_box_opts )
212216
@@ -284,7 +288,9 @@ local function new_readview(vshard_router, replicasets, readview_info, space, in
284288 func_args [4 ].readview_id = replicaset_info .id
285289 local mode = " read"
286290 local bucket_ids = {}
287- local func_args_ext = utils .append_array ({ box .session .effective_user (), bucket_ids , mode , func_name }, func_args )
291+ local func_args_ext = utils .append_array (
292+ { box .session .effective_user (), bucket_ids , mode , func_name },
293+ func_args )
288294 local future = replica .conn :call (" _crud.call_on_storage" ,
289295 func_args_ext , net_box_opts )
290296
0 commit comments