diff options
author | Sinisa@sinisa.nasamreza.org <> | 2003-03-10 20:54:18 +0200 |
---|---|---|
committer | Sinisa@sinisa.nasamreza.org <> | 2003-03-10 20:54:18 +0200 |
commit | 9c8838749f11af68238d415f99763787e32d5f7c (patch) | |
tree | 2d9fa4d526063ce45cfbf193b270d14ddedf4fea /mysql-test/r/row.result | |
parent | d6923a6c1044a924d4d2004dfbeed8c5b750afd2 (diff) | |
download | mariadb-git-9c8838749f11af68238d415f99763787e32d5f7c.tar.gz |
Fix for a bug with ROW(..) <=> ROW(...)
Diffstat (limited to 'mysql-test/r/row.result')
-rw-r--r-- | mysql-test/r/row.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/row.result b/mysql-test/r/row.result index 40beeb4d3a5..79eb6cc7e59 100644 --- a/mysql-test/r/row.result +++ b/mysql-test/r/row.result @@ -159,3 +159,9 @@ a MAX(b) (1, MAX(b)) = (1, 4) 1 4 1 10 43 0 drop table t1; +SELECT ROW(2,10) <=> ROW(3,4); +ROW(2,10) <=> ROW(3,4) +0 +SELECT ROW(NULL,10) <=> ROW(3,NULL); +ROW(NULL,10) <=> ROW(3,NULL) +0 |