diff --git a/test/box/sql.result b/test/box/sql.result index 9c298c7efc77e96b64e9480749fdfc89f6f99862..a1ad9bc90000742a2355140e42e732eb1daa8a56 100644 --- a/test/box/sql.result +++ b/test/box/sql.result @@ -96,6 +96,9 @@ select * from t65537 where k0 = 0 An error occurred: ER_NO_SUCH_SPACE, 'Space 65537 does not exist' select * from t4294967295 where k0 = 0 An error occurred: ER_NO_SUCH_SPACE, 'Space 4294967295 does not exist' +lua box.space[0]:truncate() +--- +... # # A test case for: http://bugs.launchpad.net/bugs/716683 # Admin console should not stall on unknown command. diff --git a/test/box/sql.test b/test/box/sql.test index f950f5da8de6dfa4b835211c3f4004d07c9722a5..3b4fbcd8b0ff60208fac5efcf2502b744a540ac7 100644 --- a/test/box/sql.test +++ b/test/box/sql.test @@ -57,6 +57,7 @@ print """# exec sql "select * from t1 where k0 = 0" exec sql "select * from t65537 where k0 = 0" exec sql "select * from t4294967295 where k0 = 0" +exec admin "lua box.space[0]:truncate()" print """# # A test case for: http://bugs.launchpad.net/bugs/716683