18 lines
369 B
Lua
18 lines
369 B
Lua
pathtest = string.match(test, "(.*/)")
|
|
|
|
if pathtest then
|
|
dofile(pathtest .. "common.lua")
|
|
else
|
|
require("common")
|
|
end
|
|
|
|
function thread_init()
|
|
set_vars()
|
|
end
|
|
|
|
function event()
|
|
local table_name
|
|
table_name = "sbtest".. sb_rand_uniform(1, oltp_tables_count)
|
|
rs = db_query("UPDATE ".. table_name .." SET k=k+1 WHERE id=" .. sb_rand(1, oltp_table_size))
|
|
end
|