summaryrefslogtreecommitdiff
path: root/mysql-test/r/select.result
diff options
context:
space:
mode:
authorunknown <evgen@moonbone.local>2006-07-17 16:12:42 +0400
committerunknown <evgen@moonbone.local>2006-07-17 16:12:42 +0400
commit14d72663f1eb0d9ec7cf7d353f09c2cc14a30597 (patch)
tree1429a82ff0e26f867062ccc531e991624205ee21 /mysql-test/r/select.result
parent9a5daa602a11a2285b69b3c400d2e683cf63837a (diff)
downloadmariadb-git-14d72663f1eb0d9ec7cf7d353f09c2cc14a30597.tar.gz
select.result, select.test:
Test case for bug#10977 altered to make it work in both plain and ps-protocol modes. mysql-test/t/select.test: Test case for bug#10977 altered to make it work in both plain and ps-protocol modes. mysql-test/r/select.result: Test case for bug#10977 altered to make it work in both plain and ps-protocol modes.
Diffstat (limited to 'mysql-test/r/select.result')
-rw-r--r--mysql-test/r/select.result7
1 files changed, 4 insertions, 3 deletions
diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result
index 30708c0ccda..c2218585f7c 100644
--- a/mysql-test/r/select.result
+++ b/mysql-test/r/select.result
@@ -3398,8 +3398,9 @@ drop table t1,t2;
SELECT 0.9888889889 * 1.011111411911;
0.9888889889 * 1.011111411911
0.9998769417899202067879
-select 1 as ' a ';
-a
-1
+prepare stmt from 'select 1 as " a "';
Warnings:
Warning 1466 Leading spaces are removed from name ' a '
+execute stmt;
+a
+1