Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cor committed Dec 6, 2024
1 parent 1d5bd86 commit 7af0bfa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions go/libraries/doltcore/sqle/enginetest/dolt_queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -2076,7 +2076,7 @@ var HistorySystemTableScriptTests = []queries.ScriptTest{
},
},
{
Query: "explain select pk, c from dolt_history_t1 where pk = 3",
Query: "explain plan select pk, c from dolt_history_t1 where pk = 3",
Expected: []sql.Row{
{"Filter"},
{" ├─ (dolt_history_t1.pk = 3)"},
Expand All @@ -2087,7 +2087,7 @@ var HistorySystemTableScriptTests = []queries.ScriptTest{
},
},
{
Query: "explain select pk, c from dolt_history_t1 where pk = 3 and committer = 'someguy'",
Query: "explain plan select pk, c from dolt_history_t1 where pk = 3 and committer = 'someguy'",
Expected: []sql.Row{
{"Project"},
{" ├─ columns: [dolt_history_t1.pk, dolt_history_t1.c]"},
Expand Down Expand Up @@ -2151,7 +2151,7 @@ var HistorySystemTableScriptTests = []queries.ScriptTest{
},
},
{
Query: "explain select pk, c from dolt_history_t1 where c = 4",
Query: "explain plan select pk, c from dolt_history_t1 where c = 4",
Expected: []sql.Row{
{"Filter"},
{" ├─ (dolt_history_t1.c = 4)"},
Expand All @@ -2162,7 +2162,7 @@ var HistorySystemTableScriptTests = []queries.ScriptTest{
},
},
{
Query: "explain select pk, c from dolt_history_t1 where c = 10 and committer = 'someguy'",
Query: "explain plan select pk, c from dolt_history_t1 where c = 10 and committer = 'someguy'",
Expected: []sql.Row{
{"Project"},
{" ├─ columns: [dolt_history_t1.pk, dolt_history_t1.c]"},
Expand Down

0 comments on commit 7af0bfa

Please sign in to comment.