@@ -39,13 +39,13 @@ func TestDoltFunctions(t *testing.T) {
3939 SkipResultsCheck : true ,
4040 },
4141 {
42- Query : "select count(*) from dolt_log " ,
42+ Query : "select count(*) from dolt.log " ,
4343 Expected : []sql.Row {
4444 {3 }, // initial commit, CREATE DATABASE commit, CREATE TABLE commit
4545 },
4646 },
4747 {
48- Query : "select message from dolt_log order by date desc limit 1" ,
48+ Query : "select message from dolt.log order by date desc limit 1" ,
4949 Expected : []sql.Row {
5050 {"new table" },
5151 },
@@ -73,7 +73,7 @@ func TestDoltFunctions(t *testing.T) {
7373 },
7474 },
7575 {
76- Query : "select count(*) from dolt_log " ,
76+ Query : "select count(*) from dolt.log " ,
7777 Expected : []sql.Row {
7878 {3 }, // initial commit, CREATE DATABASE commit, CREATE TABLE commit
7979 },
@@ -83,7 +83,7 @@ func TestDoltFunctions(t *testing.T) {
8383 SkipResultsCheck : true ,
8484 },
8585 {
86- Query : "select count(*) from dolt_log " ,
86+ Query : "select count(*) from dolt.log " ,
8787 Expected : []sql.Row {
8888 {5 }, // initial commit, CREATE DATABASE commit, CREATE TABLE t1 commit, new CREATE TABLE t2 commit, merge commit
8989 },
@@ -112,7 +112,7 @@ func TestDoltFunctions(t *testing.T) {
112112 },
113113 },
114114 {
115- Query : "SELECT * FROM dolt_status " ,
115+ Query : "SELECT * FROM dolt.status " ,
116116 Expected : []sql.Row {
117117 {"public.t1" , 0 , "modified" },
118118 },
@@ -122,7 +122,7 @@ func TestDoltFunctions(t *testing.T) {
122122 ExpectedErr : "error: local changes would be stomped by merge" ,
123123 },
124124 {
125- Query : "SELECT * FROM dolt_status " ,
125+ Query : "SELECT * FROM dolt.status " ,
126126 Expected : []sql.Row {
127127 {"public.t1" , 0 , "modified" },
128128 },
@@ -151,7 +151,7 @@ func TestDoltFunctions(t *testing.T) {
151151 },
152152 },
153153 {
154- Query : "SELECT * FROM dolt_status " ,
154+ Query : "SELECT * FROM dolt.status " ,
155155 Expected : []sql.Row {
156156 {"public.t1" , 0 , "modified" },
157157 },
@@ -161,7 +161,7 @@ func TestDoltFunctions(t *testing.T) {
161161 SkipResultsCheck : true ,
162162 },
163163 {
164- Query : "SELECT * FROM dolt_status " ,
164+ Query : "SELECT * FROM dolt.status " ,
165165 Expected : []sql.Row {
166166 {"public.t1" , 0 , "modified" },
167167 },
@@ -176,7 +176,7 @@ func TestDoltFunctions(t *testing.T) {
176176 },
177177 Assertions : []ScriptTestAssertion {
178178 {
179- Query : "SELECT * FROM dolt_status ;" ,
179+ Query : "SELECT * FROM dolt.status ;" ,
180180 Expected : []sql.Row {
181181 {"public.t1" , 0 , "new table" },
182182 },
@@ -186,7 +186,7 @@ func TestDoltFunctions(t *testing.T) {
186186 Expected : []sql.Row {{"{0}" }},
187187 },
188188 {
189- Query : "SELECT * FROM dolt_status ;" ,
189+ Query : "SELECT * FROM dolt.status ;" ,
190190 Expected : []sql.Row {
191191 {"public.t1" , 1 , "new table" },
192192 },
@@ -196,7 +196,7 @@ func TestDoltFunctions(t *testing.T) {
196196 Expected : []sql.Row {{"{0}" }},
197197 },
198198 {
199- Query : "SELECT * FROM dolt_status ;" ,
199+ Query : "SELECT * FROM dolt.status ;" ,
200200 Expected : []sql.Row {
201201 {"public.t1" , 0 , "new table" },
202202 },
@@ -211,7 +211,7 @@ func TestDoltFunctions(t *testing.T) {
211211 },
212212 Assertions : []ScriptTestAssertion {
213213 {
214- Query : "SELECT * FROM dolt_status ;" ,
214+ Query : "SELECT * FROM dolt.status ;" ,
215215 Expected : []sql.Row {
216216 {"public.t1" , 0 , "new table" },
217217 },
@@ -221,15 +221,15 @@ func TestDoltFunctions(t *testing.T) {
221221 Expected : []sql.Row {{"{0}" }},
222222 },
223223 {
224- Query : "SELECT * FROM dolt_status ;" ,
224+ Query : "SELECT * FROM dolt.status ;" ,
225225 Expected : []sql.Row {},
226226 },
227227 {
228228 Query : "CREATE TABLE t1 (pk int primary key);" ,
229229 Expected : []sql.Row {},
230230 },
231231 {
232- Query : "SELECT * FROM dolt_status ;" ,
232+ Query : "SELECT * FROM dolt.status ;" ,
233233 Expected : []sql.Row {
234234 {"public.t1" , 0 , "new table" },
235235 },
@@ -241,7 +241,7 @@ func TestDoltFunctions(t *testing.T) {
241241 },
242242 {
243243 Skip : true ,
244- Query : "SELECT * FROM dolt_status ;" ,
244+ Query : "SELECT * FROM dolt.status ;" ,
245245 Expected : []sql.Row {},
246246 },
247247 },
@@ -254,7 +254,7 @@ func TestDoltFunctions(t *testing.T) {
254254 },
255255 Assertions : []ScriptTestAssertion {
256256 {
257- Query : "SELECT * FROM dolt_status ;" ,
257+ Query : "SELECT * FROM dolt.status ;" ,
258258 Expected : []sql.Row {
259259 {"public.t1" , 0 , "new table" },
260260 },
@@ -264,7 +264,7 @@ func TestDoltFunctions(t *testing.T) {
264264 Expected : []sql.Row {{"{0}" }},
265265 },
266266 {
267- Query : "SELECT * FROM dolt_status ;" ,
267+ Query : "SELECT * FROM dolt.status ;" ,
268268 Expected : []sql.Row {},
269269 },
270270 },
@@ -371,7 +371,7 @@ func TestDoltFunctions(t *testing.T) {
371371 },
372372 Assertions : []ScriptTestAssertion {
373373 {
374- Query : "SELECT * FROM dolt_status ;" ,
374+ Query : "SELECT * FROM dolt.status ;" ,
375375 Expected : []sql.Row {
376376 {"public.t1" , 0 , "new table" },
377377 {"testschema.t2" , 0 , "new table" },
0 commit comments