public void init(DBDescriptor dbDescriptor, SqlUtils sqlUtils) {
   if (!dbDescriptor.supportsSequences()) {
     throw new InternalException(
         "Database Type '" + dbDescriptor.getClass().getName() + "' does not support sequences");
   }
   this.dbDescriptor = dbDescriptor;
   this.sqlUtils = sqlUtils;
 }