~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/t/row.test

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

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
#