Constructs a MergeQuery object.
DatabaseConnection $connection: A DatabaseConnection object.
string $table: Name of the table to associate with this query.
array $options: Array of database options.
Overrides Query::__construct
public function __construct(DatabaseConnection $connection, $table, array $options = array()) {
$options['return'] = Database::RETURN_AFFECTED;
parent::__construct($connection, $options);
$this->table = $table;
$this->conditionTable = $table;
$this->condition = new DatabaseCondition('AND');
}