diff options
author | timour@mysql.com <> | 2005-08-12 19:27:54 +0300 |
---|---|---|
committer | timour@mysql.com <> | 2005-08-12 19:27:54 +0300 |
commit | 354ce1d0244d647922521a1fa3fc7249815bf232 (patch) | |
tree | 47cfdff5ea22001b614037779ee931abbc209636 /tests | |
parent | 2316f8cb337b0f2ee1d83908df405bd4bf96178e (diff) | |
parent | a247282aa6270e809f4ad3f5205dc79ca7be8ec0 (diff) | |
download | mariadb-git-354ce1d0244d647922521a1fa3fc7249815bf232.tar.gz |
Merge mysql.com:/home/timka/mysql/src/5.0-virgin
into mysql.com:/home/timka/mysql/src/5.0-2486-merge
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mysql_client_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index 75b41ebe4d1..5558028bb06 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -11801,8 +11801,8 @@ static void test_bug6046() stmt= mysql_stmt_init(mysql); - stmt_text= "SELECT t1.a FROM t1 NATURAL JOIN t1 as X1 " - "WHERE t1.b > ? ORDER BY t1.a"; + stmt_text= "SELECT a FROM t1 NATURAL JOIN t1 as X1 " + "WHERE b > ? ORDER BY a"; rc= mysql_stmt_prepare(stmt, stmt_text, strlen(stmt_text)); check_execute(stmt, rc); |