summaryrefslogtreecommitdiff
path: root/mysql-test/t/row.test
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2002-12-10 18:10:00 +0200
committerunknown <bell@sanja.is.com.ua>2002-12-10 18:10:00 +0200
commit91d3e2b3b85f684e58968875af6290423dabd194 (patch)
treef6d9a309c74ab9c724ad61974a110e1cab4efb95 /mysql-test/t/row.test
parent6f88718fc9cffbb4cdff768de100691a70067272 (diff)
downloadmariadb-git-91d3e2b3b85f684e58968875af6290423dabd194.tar.gz
postreview fix (SCRUM)
NULL fixed max_length fixed layout fixed mysql-test/r/row.result: NULL fixed mysql-test/t/row.test: NULL fixed sql/item.cc: postreview fix sql/item.h: postreview fix sql/item_cmpfunc.cc: layout fix postreview fix max_length fix NULL fixed sql/item_cmpfunc.h: postreview fix sql/item_row.cc: NULL fixed sql/item_row.h: NULL fixed sql/sql_class.cc: postreview fix
Diffstat (limited to 'mysql-test/t/row.test')
-rw-r--r--mysql-test/t/row.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/row.test b/mysql-test/t/row.test
index 04f31fcbfe1..593e2342856 100644
--- a/mysql-test/t/row.test
+++ b/mysql-test/t/row.test
@@ -7,6 +7,8 @@ select row('a',0,3) IN (row(3,2,3), row('a','0','3'), row(1,3,3));
select row('a',0,3) IN (row(3,2,3), row('a','a','3'), row(1,3,3));
select row('a',1.5,3) IN (row(3,NULL,3), row('a',1.5,3), row(1,3,3));
select row('b',1.5,3) IN (row(3,NULL,3), row('a',1.5,3), row(1,3,3));
+select row('b',1.5,3) IN (row('b',NULL,3), row('a',1.5,3), row(1,3,3));
+select row('b',1.5,3) IN (row('b',NULL,4), row('a',1.5,3), row(1,3,3));
select row(1,2,row(3,4)) IN (row(3,2,row(3,4)), row(1,2,row(3,4)));
-- error 1239
select row(1,2,row(3,4)) IN (row(3,2,row(3,4)), row(1,2,4));