Skip to content

Commit 4ddb697

Browse files
committed
add skipped test
1 parent 41cc6e6 commit 4ddb697

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

testing/go/create_function_plpgsql_test.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1380,6 +1380,8 @@ END;
13801380
Name: "resolve type with empty search path",
13811381
SetUpScript: []string{
13821382
"set search_path to ''",
1383+
`CREATE TABLE public.ambienttempdetail (tempdetailid integer NOT NULL, panelprojectid integer, threshold_value numeric(10,2), readingintervalinmin integer);`,
1384+
`insert into public.ambienttempdetail values (1, 101, 25.5, 15);`,
13831385
},
13841386
Assertions: []ScriptTestAssertion{
13851387
{
@@ -1407,6 +1409,14 @@ END;
14071409
$$;`,
14081410
Expected: []sql.Row{},
14091411
},
1412+
{
1413+
Query: "set search_path to 'public'",
1414+
},
1415+
{
1416+
Skip: true,
1417+
Query: "SELECT public.ambienttempdetail_insertupdate(101, 25.5, 15);",
1418+
Expected: []sql.Row{{101}},
1419+
},
14101420
},
14111421
},
14121422
})

0 commit comments

Comments
 (0)