Beispiel #1
0
 public QueryThread(
     int totalThreads,
     int queryThreadIndex,
     Integer rows,
     int batchSize,
     boolean distinct,
     boolean isLinkIndex,
     boolean isSuperIndex,
     QueryThread parameters)
     throws TechnicalException {
   this(
       totalThreads,
       queryThreadIndex,
       rows,
       batchSize,
       distinct,
       isLinkIndex,
       isSuperIndex,
       parameters.getDatabaseParameter(),
       parameters.getTableName(),
       parameters.getLeftJoinFields(),
       parameters.getRightJoinFields(),
       parameters.getResultFields());
 }