Skip to content

Commit 670d7c5

Browse files
internal: fix missing dev_checks
1 parent a8e8bb3 commit 670d7c5

File tree

7 files changed

+9
-0
lines changed

7 files changed

+9
-0
lines changed

crud/insert.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ local function call_insert_on_router(vshard_router, space_name, original_tuple,
6262
add_space_schema_hash = '?boolean',
6363
fields = '?table',
6464
vshard_router = '?string|table',
65+
skip_nullability_check_on_flatten = '?boolean',
6566
})
6667

6768
local space, err = utils.get_space(space_name, vshard_router, opts.timeout)

crud/insert_many.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ local function call_insert_many_on_router(vshard_router, space_name, original_tu
129129
stop_on_error = '?boolean',
130130
rollback_on_error = '?boolean',
131131
vshard_router = '?string|table',
132+
skip_nullability_check_on_flatten = '?boolean',
132133
})
133134

134135
local space, err = utils.get_space(space_name, vshard_router, opts.timeout)

crud/replace.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ local function call_replace_on_router(vshard_router, space_name, original_tuple,
6262
add_space_schema_hash = '?boolean',
6363
fields = '?table',
6464
vshard_router = '?string|table',
65+
skip_nullability_check_on_flatten = '?boolean',
6566
})
6667

6768
local space, err = utils.get_space(space_name, vshard_router, opts.timeout)

crud/replace_many.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ local function call_replace_many_on_router(vshard_router, space_name, original_t
131131
stop_on_error = '?boolean',
132132
rollback_on_error = '?boolean',
133133
vshard_router = '?string|table',
134+
skip_nullability_check_on_flatten = '?boolean',
134135
})
135136

136137
local space, err = utils.get_space(space_name, vshard_router, opts.timeout)

crud/select/iterator.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ function Iterator.new(opts)
2929
call_opts = 'table',
3030
sharding_hash = 'table',
3131

32+
vshard_router = 'table',
3233
yield_every = '?number',
3334
})
3435

@@ -60,6 +61,7 @@ function Iterator.new(opts)
6061

6162
sharding_hash = opts.sharding_hash,
6263

64+
vshard_router = opts.vshard_router,
6365
yield_every = opts.yield_every,
6466
}
6567

crud/upsert.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ local UPSERT_FUNC_NAME = '_crud.upsert_on_storage'
1717
local function upsert_on_storage(space_name, tuple, operations, opts)
1818
dev_checks('string', 'table', 'table', {
1919
add_space_schema_hash = '?boolean',
20+
fields = '?table',
2021
sharding_key_hash = '?number',
2122
sharding_func_hash = '?number',
2223
skip_sharding_hash_check = '?boolean',
@@ -60,6 +61,7 @@ local function call_upsert_on_router(vshard_router, space_name, original_tuple,
6061
add_space_schema_hash = '?boolean',
6162
fields = '?table',
6263
vshard_router = '?string|table',
64+
skip_nullability_check_on_flatten = '?boolean',
6365
})
6466

6567
local space, err = utils.get_space(space_name, vshard_router, opts.timeout)

crud/upsert_many.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ local function call_upsert_many_on_router(vshard_router, space_name, original_tu
127127
stop_on_error = '?boolean',
128128
rollback_on_error = '?boolean',
129129
vshard_router = '?string|table',
130+
skip_nullability_check_on_flatten = '?boolean',
130131
})
131132

132133
local space, err = utils.get_space(space_name, vshard_router, opts.timeout)

0 commit comments

Comments
 (0)