All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.debezium.connector.mysql.snapshot.query.SelectAllSnapshotQuery Maven / Gradle / Ivy

The newest version!
/*
 * Copyright Debezium Authors.
 *
 * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
 */
package io.debezium.connector.mysql.snapshot.query;

import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.stream.Collectors;

import io.debezium.annotation.ConnectorSpecific;
import io.debezium.config.CommonConnectorConfig;
import io.debezium.connector.mysql.MySqlConnector;
import io.debezium.snapshot.spi.SnapshotQuery;

@ConnectorSpecific(connector = MySqlConnector.class)
public class SelectAllSnapshotQuery implements SnapshotQuery {

    @Override
    public String name() {
        return CommonConnectorConfig.SnapshotQueryMode.SELECT_ALL.getValue();
    }

    @Override
    public void configure(Map properties) {

    }

    @Override
    public Optional snapshotQuery(String tableId, List snapshotSelectColumns) {

        return Optional.of(snapshotSelectColumns.stream()
                .collect(Collectors.joining(", ", "SELECT ", " FROM " + tableId)));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy