~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/row.test

  • Committer: lbieber
  • Date: 2010-08-27 21:33:08 UTC
  • mfrom: (1733.2.1 staging)
  • Revision ID: lbieber@orisndriz03-20100827213308-amx6ld6by21sba7s
Merge Shrews - bug 599582
Merge Lee - use enum values instead of error numbers in tests

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 1241
 
90
--error ER_OPERAND_COLUMNS
91
91
SELECT ROW(1,ROW(2,3)) IN (ROW(1,ROW(2,3)),ROW(1,1));
92
 
--error 1241
 
92
--error ER_OPERAND_COLUMNS
93
93
SELECT ROW(1,ROW(2,3)) IN (ROW(1,ROW(2,3)),ROW(1,1),ROW(1,ROW(2,3)));
94
 
--error 1241
 
94
--error ER_OPERAND_COLUMNS
95
95
SELECT ROW(1,ROW(2,3)) IN (ROW(1,ROW(2,3)),ROW(1,ROW(2,2,2)));
96
 
--error 1241
 
96
--error ER_OPERAND_COLUMNS
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 1241
 
99
--error ER_OPERAND_COLUMNS
100
100
SELECT ROW(1,ROW(2,3)) IN (ROW(1,ROW(2,3)),(SELECT 1,1));
101
 
--error 1241
 
101
--error ER_OPERAND_COLUMNS
102
102
SELECT ROW(1,ROW(2,3)) IN (ROW(1,ROW(2,3)),(SELECT 1,1),ROW(1,ROW(2,4)));
103
 
--error 1241
 
103
--error ER_OPERAND_COLUMNS
104
104
SELECT ROW(1,ROW(2,3)) IN ((SELECT 1,1),ROW(1,ROW(2,3)));
105
105
 
106
 
--error 1241
 
106
--error ER_OPERAND_COLUMNS
107
107
SELECT ROW(2,1) IN (ROW(21,2),ROW(ROW(1,1,3),0));
108
 
--error 1241
 
108
--error ER_OPERAND_COLUMNS
109
109
SELECT ROW(2,1) IN (ROW(ROW(1,1,3),0),ROW(21,2));
110
110
 
111
111
#