mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-27 00:51:39 -06:00
amend select query in repro
This commit is contained in:
@@ -2080,10 +2080,10 @@ tests:
|
||||
- on: server2
|
||||
queries:
|
||||
- exec: 'USE repo1'
|
||||
- query: 'SELECT COUNT(*) FROM t'
|
||||
- query: 'SELECT * FROM t ORDER BY id'
|
||||
result:
|
||||
columns: ['COUNT(*)']
|
||||
rows: [['5']]
|
||||
columns: ['id', 'v']
|
||||
rows: [['1','0'], ['2','0'], ['3','0'], ['4','0'], ['5','0']]
|
||||
retry_attempts: 100
|
||||
- on: server1
|
||||
queries:
|
||||
@@ -2095,7 +2095,7 @@ tests:
|
||||
queries:
|
||||
- exec: 'USE repo1'
|
||||
- exec: 'INSERT INTO t(v) VALUES (1)'
|
||||
- query: 'SELECT MAX(id) FROM t'
|
||||
- query: 'SELECT * FROM t ORDER BY id'
|
||||
result:
|
||||
columns: ['MAX(id)']
|
||||
rows: [['6']]
|
||||
columns: ['id', 'v']
|
||||
rows: [['1','0'], ['2','0'], ['3','0'], ['4','0'], ['5','0'], ['6','1']]
|
||||
|
||||
Reference in New Issue
Block a user