File tree Expand file tree Collapse file tree 2 files changed +5
-18
lines changed Expand file tree Collapse file tree 2 files changed +5
-18
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -27,18 +27,22 @@ func TestUserSpaceDoltTables(t *testing.T) {
2727 Assertions : []ScriptTestAssertion {
2828 {
2929 Query : `SELECT name FROM dolt.branches` ,
30+ Cols : []string {"name" },
3031 Expected : []sql.Row {{"main" }},
3132 },
3233 {
3334 Query : `SELECT name FROM dolt_branches` ,
35+ Cols : []string {"name" },
3436 Expected : []sql.Row {{"main" }},
3537 },
3638 {
3739 Query : `SELECT branches.name FROM dolt.branches` ,
40+ Cols : []string {"name" },
3841 Expected : []sql.Row {{"main" }},
3942 },
4043 {
4144 Query : `SELECT dolt.branches.name FROM dolt.branches` ,
45+ Cols : []string {"name" },
4246 Expected : []sql.Row {{"main" }},
4347 },
4448 {
@@ -2065,7 +2069,7 @@ func TestUserSpaceDoltTables(t *testing.T) {
20652069 },
20662070 },
20672071 {
2068- Name : "dolt procedures" ,
2072+ Name : "dolt procedures" ,
20692073 SetUpScript : []string {
20702074 // TODO: Create procedure when supported
20712075 },
You can’t perform that action at this time.
0 commit comments