/**
  * @param SqlDumperContext $context
  */
 public function __construct(SqlDumperContext $context)
 {
     $this->context = $context;
     $this->connectionHandler = $context->getConnectionHandler();
     $this->dataConverter = $context->getDataConverter();
     $this->dumpOutput = $context->getDumpOutput();
     $this->logger = $context->getLogger();
     $this->dataLoader = new DataLoader($this->connectionHandler);
 }