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
333c34d5
Commit
333c34d5
authored
Jun 14, 2005
by
mskold@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added order by for failing ps_7ndb test
parent
2fd593e1
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
mysql-test/include/ps_query.inc
mysql-test/include/ps_query.inc
+1
-1
mysql-test/r/ps_2myisam.result
mysql-test/r/ps_2myisam.result
+1
-1
mysql-test/r/ps_3innodb.result
mysql-test/r/ps_3innodb.result
+1
-1
mysql-test/r/ps_4heap.result
mysql-test/r/ps_4heap.result
+1
-1
mysql-test/r/ps_5merge.result
mysql-test/r/ps_5merge.result
+2
-2
mysql-test/r/ps_6bdb.result
mysql-test/r/ps_6bdb.result
+1
-1
mysql-test/r/ps_7ndb.result
mysql-test/r/ps_7ndb.result
+2
-2
No files found.
mysql-test/include/ps_query.inc
View file @
333c34d5
...
...
@@ -300,7 +300,7 @@ set @arg00=1;
prepare
stmt1
from
' select a,b from t1 order by a
limit 1 '
;
execute
stmt1
;
prepare
stmt1
from
' select a,b from t1 limit ? '
;
prepare
stmt1
from
' select a,b from t1
order by a
limit ? '
;
execute
stmt1
using
@
arg00
;
##### parameter used in many places
...
...
mysql-test/r/ps_2myisam.result
View file @
333c34d5
...
...
@@ -444,7 +444,7 @@ limit 1 ';
execute stmt1 ;
a b
1 one
prepare stmt1 from ' select a,b from t1 limit ? ';
prepare stmt1 from ' select a,b from t1
order by a
limit ? ';
execute stmt1 using @arg00;
a b
1 one
...
...
mysql-test/r/ps_3innodb.result
View file @
333c34d5
...
...
@@ -444,7 +444,7 @@ limit 1 ';
execute stmt1 ;
a b
1 one
prepare stmt1 from ' select a,b from t1 limit ? ';
prepare stmt1 from ' select a,b from t1
order by a
limit ? ';
execute stmt1 using @arg00;
a b
1 one
...
...
mysql-test/r/ps_4heap.result
View file @
333c34d5
...
...
@@ -445,7 +445,7 @@ limit 1 ';
execute stmt1 ;
a b
1 one
prepare stmt1 from ' select a,b from t1 limit ? ';
prepare stmt1 from ' select a,b from t1
order by a
limit ? ';
execute stmt1 using @arg00;
a b
1 one
...
...
mysql-test/r/ps_5merge.result
View file @
333c34d5
...
...
@@ -487,7 +487,7 @@ limit 1 ';
execute stmt1 ;
a b
1 one
prepare stmt1 from ' select a,b from t1 limit ? ';
prepare stmt1 from ' select a,b from t1
order by a
limit ? ';
execute stmt1 using @arg00;
a b
1 one
...
...
@@ -3499,7 +3499,7 @@ limit 1 ';
execute stmt1 ;
a b
1 one
prepare stmt1 from ' select a,b from t1 limit ? ';
prepare stmt1 from ' select a,b from t1
order by a
limit ? ';
execute stmt1 using @arg00;
a b
1 one
...
...
mysql-test/r/ps_6bdb.result
View file @
333c34d5
...
...
@@ -444,7 +444,7 @@ limit 1 ';
execute stmt1 ;
a b
1 one
prepare stmt1 from ' select a,b from t1 limit ? ';
prepare stmt1 from ' select a,b from t1
order by a
limit ? ';
execute stmt1 using @arg00;
a b
1 one
...
...
mysql-test/r/ps_7ndb.result
View file @
333c34d5
...
...
@@ -444,10 +444,10 @@ limit 1 ';
execute stmt1 ;
a b
1 one
prepare stmt1 from ' select a,b from t1 limit ? ';
prepare stmt1 from ' select a,b from t1
order by a
limit ? ';
execute stmt1 using @arg00;
a b
3 thre
e
1 on
e
set @arg00='b' ;
set @arg01=0 ;
set @arg02=2 ;
...
...
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