File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/io/cdap/plugin/gcp/bigquery Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public class SQLExpressionFactory implements ExpressionFactory<String> {
2929 */
3030 @ Override
3131 public ExpressionFactoryType <String > getType () {
32- return StringExpressionFactoryType .SQL ;
32+ return StringExpressionFactoryType .BIGQUERY_SQL ;
3333 }
3434
3535 /**
@@ -50,7 +50,7 @@ public Expression compile(String expression) {
5050 */
5151 @ Override
5252 public Set <Capability > getCapabilities () {
53- return new HashSet <>(Arrays .asList (StringExpressionFactoryType .SQL ,
53+ return new HashSet <>(Arrays .asList (StringExpressionFactoryType .BIGQUERY_SQL ,
5454 CoreExpressionCapabilities .CAN_GET_QUALIFIED_DATASET_NAME ,
5555 CoreExpressionCapabilities .CAN_GET_QUALIFIED_COLUMN_NAME ,
5656 CoreExpressionCapabilities .CAN_SET_DATASET_ALIAS ));
Original file line number Diff line number Diff line change @@ -420,7 +420,7 @@ public void cleanup(String datasetName) throws SQLEngineException {
420420 */
421421 @ Override
422422 public Set <Capability > getCapabilities () {
423- return Collections .singleton (StringExpressionFactoryType .SQL );
423+ return Collections .singleton (StringExpressionFactoryType .BIGQUERY_SQL );
424424 }
425425
426426 /**
You can’t perform that action at this time.
0 commit comments