blob: c2e56a62bed9372efb1c06bf7fe74a4b7b54d99c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.flink.connector.jdbc.databases.sqlserver.table;
import org.apache.flink.connector.jdbc.databases.sqlserver.SqlServerTestBase;
import org.apache.flink.connector.jdbc.databases.sqlserver.dialect.SqlServerDialect;
import org.apache.flink.connector.jdbc.table.JdbcDynamicTableSinkITCase;
import org.apache.flink.connector.jdbc.testutils.tables.TableRow;
import org.apache.flink.table.api.DataTypes;
import static org.apache.flink.connector.jdbc.testutils.tables.TableBuilder.dbType;
import static org.apache.flink.connector.jdbc.testutils.tables.TableBuilder.field;
import static org.apache.flink.connector.jdbc.testutils.tables.TableBuilder.pkField;
import static org.apache.flink.connector.jdbc.testutils.tables.TableBuilder.tableRow;
/** The Table Sink ITCase for {@link SqlServerDialect}. */
public class SqlServerDynamicTableSinkITCase extends JdbcDynamicTableSinkITCase
implements SqlServerTestBase {
@Override
protected TableRow createUpsertOutputTable() {
return tableRow(
"dynamicSinkForUpsert",
pkField("cnt", DataTypes.BIGINT().notNull()),
field("lencnt", DataTypes.BIGINT().notNull()),
pkField("cTag", DataTypes.INT().notNull()),
field("ts", dbType("DATETIME2"), DataTypes.TIMESTAMP()));
}
@Override
protected TableRow createAppendOutputTable() {
return tableRow(
"dynamicSinkForAppend",
field("id", DataTypes.INT().notNull()),
field("num", DataTypes.BIGINT().notNull()),
field("ts", dbType("DATETIME2"), DataTypes.TIMESTAMP()));
}
}