File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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.
204204func 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 },
You can’t perform that action at this time.
0 commit comments