File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -126,30 +126,30 @@ public function dataProvider_DataFiltersAsSubQuery()
126
126
[
127
127
"filter : data = foo "
128
128
],
129
- "AND (( data_bar.col1 != '' AND data_bar.col1 = ?) ) " ,
129
+ "AND (data_bar.col1 = ? ) " ,
130
130
"The WHERE-clauses from page-syntax should be wrapped in parentheses "
131
131
],
132
132
[
133
133
[
134
134
"OR : data = foo "
135
135
],
136
- "AND (( data_bar.col1 != '' AND data_bar.col1 = ?) ) " ,
136
+ "AND (data_bar.col1 = ? ) " ,
137
137
"A single OR clause should be treated as AND clauses "
138
138
],
139
139
[
140
140
[
141
141
"filter : data = foo " ,
142
142
"OR : data = bar "
143
143
],
144
- "AND (( data_bar.col1 != '' AND data_bar.col1 = ?) OR ( data_bar.col1 != '' AND data_bar.col1 = ?) ) " ,
144
+ "AND (data_bar.col1 = ? OR data_bar.col1 = ? ) " ,
145
145
"The WHERE-clauses from page-syntax should be wrapped in parentheses "
146
146
],
147
147
[
148
148
[
149
149
"OR : data = bar " ,
150
150
"filter : data = foo "
151
151
],
152
- "AND (( data_bar.col1 != '' AND data_bar.col1 = ?) AND ( data_bar.col1 != '' AND data_bar.col1 = ?) ) " ,
152
+ "AND (data_bar.col1 = ? AND data_bar.col1 = ? ) " ,
153
153
"A single OR clause should be treated as AND clauses "
154
154
]
155
155
];
You can’t perform that action at this time.
0 commit comments