~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/row.test

  • Committer: Patrick Galbraith
  • Date: 2009-10-08 22:42:05 UTC
  • mto: (1166.5.3 memcached_functions)
  • mto: This revision was merged to the branch mainline in revision 1189.
  • Revision ID: patg@patrick-galbraiths-macbook-pro.local-20091008224205-gq1pehjsivvx0qo9
Starting over with a fresh tree, moved in memcached functions.

Memcached Functions for Drizzle. 

All tests pass.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
# Bug #27484: nested row expressions in IN predicate
88
88
#
89
89
 
90
 
--error ER_OPERAND_COLUMNS
 
90
--error 1241
91
91
SELECT ROW(1,ROW(2,3)) IN (ROW(1,ROW(2,3)),ROW(1,1));
92
 
--error ER_OPERAND_COLUMNS
 
92
--error 1241
93
93
SELECT ROW(1,ROW(2,3)) IN (ROW(1,ROW(2,3)),ROW(1,1),ROW(1,ROW(2,3)));
94
 
--error ER_OPERAND_COLUMNS
 
94
--error 1241
95
95
SELECT ROW(1,ROW(2,3)) IN (ROW(1,ROW(2,3)),ROW(1,ROW(2,2,2)));
96
 
--error ER_OPERAND_COLUMNS
 
96
--error 1241
97
97
SELECT ROW(1,ROW(2,3,4)) IN (ROW(1,ROW(2,3,4)),ROW(1,ROW(2,2)));
98
98
 
99
 
--error ER_OPERAND_COLUMNS
 
99
--error 1241
100
100
SELECT ROW(1,ROW(2,3)) IN (ROW(1,ROW(2,3)),(SELECT 1,1));
101
 
--error ER_OPERAND_COLUMNS
 
101
--error 1241
102
102
SELECT ROW(1,ROW(2,3)) IN (ROW(1,ROW(2,3)),(SELECT 1,1),ROW(1,ROW(2,4)));
103
 
--error ER_OPERAND_COLUMNS
 
103
--error 1241
104
104
SELECT ROW(1,ROW(2,3)) IN ((SELECT 1,1),ROW(1,ROW(2,3)));
105
105
 
106
 
--error ER_OPERAND_COLUMNS
 
106
--error 1241
107
107
SELECT ROW(2,1) IN (ROW(21,2),ROW(ROW(1,1,3),0));
108
 
--error ER_OPERAND_COLUMNS
 
108
--error 1241
109
109
SELECT ROW(2,1) IN (ROW(ROW(1,1,3),0),ROW(21,2));
110
110
 
111
111
#