// create source table and optional import information
storageManager.insertTableSource(((NativeTableHandle) targetTable), sourceTable);
// if a refresh is present, create a periodic import for this table
if (analysis.getRefreshInterval().isPresent()) {
PeriodicImportJob job = PeriodicImportJob.createJob(sourceTable, destination, analysis.getRefreshInterval().get());
periodicImportManager.insertJob(job);
}
}
// compute input symbol <-> column mappings