Skip to content

Commit 8711499

Browse files
author
James Cor
committed
test
1 parent 4434731 commit 8711499

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

enginetest/memory_engine_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,20 +202,20 @@ func TestSingleQueryPrepared(t *testing.T) {
202202

203203
// Convenience test for debugging a single query. Unskip and set to the desired query.
204204
func TestSingleScript(t *testing.T) {
205-
t.Skip()
205+
//t.Skip()
206206
var scripts = []queries.ScriptTest{
207207
{
208-
Name: "AS OF propagates to nested CALLs",
208+
Name: "asdf",
209209
SetUpScript: []string{},
210210
Assertions: []queries.ScriptTestAssertion{
211211
{
212-
Query: "create procedure create_proc() create table t (i int primary key, j int);",
212+
Query: "create table t (`order` int, check (`order` > 0))",
213213
Expected: []sql.Row{
214214
{types.NewOkResult(0)},
215215
},
216216
},
217217
{
218-
Query: "call create_proc()",
218+
Query: "insert into t values (1)",
219219
Expected: []sql.Row{
220220
{types.NewOkResult(0)},
221221
},

0 commit comments

Comments
 (0)