We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 240bd32 commit 5de6b5fCopy full SHA for 5de6b5f
wrangler-transform/src/main/java/io/cdap/wrangler/Wrangler.java
@@ -381,6 +381,12 @@ public void destroy() {
381
*/
382
@Override
383
public void transform(StructuredRecord input, Emitter<StructuredRecord> emitter) throws Exception {
384
+ if (PRECONDITION_LANGUAGE_SQL.equals(config.getPreconditionLanguage())) {
385
+ throw new IllegalArgumentException("SQL filters are not supported with "
386
+ + "multiple input stages. Please ensure the Wrangler stages with SQL "
387
+ + "filters have only one input.");
388
+ }
389
+
390
long start = 0;
391
List<StructuredRecord> records;
392
0 commit comments