diff options
author | tomas@poseidon.ndb.mysql.com <> | 2004-10-07 09:51:30 +0000 |
---|---|---|
committer | tomas@poseidon.ndb.mysql.com <> | 2004-10-07 09:51:30 +0000 |
commit | 4afccd761b2df476c06ebecfaac589cd472594ee (patch) | |
tree | c6f6140081e6c3d36e760c2410e13ff7f32e85ee /mysql-test/r/ps_7ndb.result | |
parent | a03001155bd730336dcf8e16c80e7e4d7ce60937 (diff) | |
download | mariadb-git-4afccd761b2df476c06ebecfaac589cd472594ee.tar.gz |
more order by for ndb
Diffstat (limited to 'mysql-test/r/ps_7ndb.result')
-rw-r--r-- | mysql-test/r/ps_7ndb.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/ps_7ndb.result b/mysql-test/r/ps_7ndb.result index e274329388c..e33bbd7002c 100644 --- a/mysql-test/r/ps_7ndb.result +++ b/mysql-test/r/ps_7ndb.result @@ -440,11 +440,11 @@ set @arg00=0 ; execute stmt1 using @arg00; ERROR 42S22: Unknown column '?' in 'order clause' set @arg00=1; -prepare stmt1 from ' select a,b from t1 +prepare stmt1 from ' select a,b from t1 order by a limit 1 '; execute stmt1 ; a b -2 two +1 one prepare stmt1 from ' select a,b from t1 limit ? '; ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '?' at line 2 |