Compare commits

...

1 Commits

Author SHA1 Message Date
Antoine Parent
f421da87d4 fix(TBD-8299): Compile error on BigQuery Component
Error was fixed for one component, but still present when multiple
components were used.
Changed the <%cid%> to <%=cid%>
2019-02-12 14:59:44 +01:00

View File

@@ -465,8 +465,8 @@
throw new RuntimeException("Unable to delete table " + tableId_<%=cid%>);
}
}
boolean tableNotExist_<%cid%> = table_<%=cid%> == null;
if (<%=ElementParameterParser.getBooleanValue(node, "__DROP__")%> || tableNotExist_<%cid%>) {
boolean tableNotExist_<%=cid%> = table_<%=cid%> == null;
if (<%=ElementParameterParser.getBooleanValue(node, "__DROP__")%> || tableNotExist_<%=cid%>) {
boolean typeSupported = true;
java.util.List<com.google.cloud.bigquery.Field> fields_<%=cid%> = new java.util.ArrayList<>();
<%