Skip to content
Snippets Groups Projects
Verified Commit bfd40c29 authored by Denis Smirnov's avatar Denis Smirnov
Browse files

fix: lua error in exception integration test

parent f23bcd2c
No related branches found
No related tags found
1 merge request!1414sbroad import
......@@ -634,7 +634,7 @@ end
g.test_except = function()
local api = cluster:server("api-1").net_box
r, err = api:call("query", {
local r, err = api:call("query", {
[[insert into "t" ("id", "a") values (?, ?), (?, ?), (?, ?)]],
{
3, 777,
......@@ -645,7 +645,7 @@ g.test_except = function()
t.assert_equals(err, nil)
t.assert_equals(r, {row_count = 3})
local r, err = api:call("query", { [[
r, err = api:call("query", { [[
SELECT "a" FROM "t" where "id" <= 3
EXCEPT
SELECT "a" FROM "t" where "id" > 3
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment