|
@@ -44,6 +44,7 @@ public class CreateUtilsDBServiceImpl implements CreateUtilsDBService {
|
|
|
|
|
|
@Override
|
|
|
public String differenceTableWkt(String tableName, List<String> tableIds, String ewkt) {
|
|
|
+ // TODO
|
|
|
if(ewkt.equals("")){
|
|
|
return tableName;
|
|
|
}
|
|
@@ -71,6 +72,10 @@ public class CreateUtilsDBServiceImpl implements CreateUtilsDBService {
|
|
|
|
|
|
@Override
|
|
|
public String intersectionTableWkt(String tableName, List<String> tableIds, String ewkt) {
|
|
|
+ // TODO
|
|
|
+ if(ewkt.equals("")){
|
|
|
+ return tableName;
|
|
|
+ }
|
|
|
long timestamp = System.currentTimeMillis();
|
|
|
String[] tableNames = Strings.split(tableName, '_');
|
|
|
|