blob: 8413d100399eeda06c7d5bdf1322234616ad112d [file] [log] [blame]
package edu.uci.ics.asterix.metadata.declared;
import edu.uci.ics.asterix.om.types.IAType;
import edu.uci.ics.hyracks.algebricks.core.api.exceptions.AlgebricksException;
public class ExternalFeedDataSource extends AqlDataSource {
public ExternalFeedDataSource(AqlSourceId id, AqlCompiledDatasetDecl adecl, IAType itemType) throws AlgebricksException {
super(id,adecl, itemType);
}
public ExternalFeedDataSource(AqlSourceId id, AqlCompiledDatasetDecl adecl, IAType itemType, AqlDataSourceType dataSourceType) throws AlgebricksException {
super(id,adecl, itemType, dataSourceType);
}
}