Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c5d388f1
Commit
c5d388f1
authored
May 26, 2004
by
magnus@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small fix, addin order by to get predicatble output from select
parent
595cd3f5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
mysql-test/r/ndb_autodiscover.result
mysql-test/r/ndb_autodiscover.result
+2
-2
mysql-test/t/ndb_autodiscover.test
mysql-test/t/ndb_autodiscover.test
+1
-1
No files found.
mysql-test/r/ndb_autodiscover.result
View file @
c5d388f1
...
...
@@ -45,10 +45,10 @@ Variable_name Value
Handler_discover 4
flush tables;
delete from t1 where id = 3;
select * from t1;
select * from t1
order by id
;
id name
2 Autodiscover
1 Autodiscover
2 Autodiscover
show status like 'handler_discover%';
Variable_name Value
Handler_discover 5
...
...
mysql-test/t/ndb_autodiscover.test
View file @
c5d388f1
...
...
@@ -60,7 +60,7 @@ show status like 'handler_discover%';
flush
tables
;
system
rm
var
/
master
-
data
/
test
/
t1
.
frm
;
delete
from
t1
where
id
=
3
;
select
*
from
t1
;
select
*
from
t1
order
by
id
;
show
status
like
'handler_discover%'
;
drop
table
t1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment