Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import org.apache.flink.table.utils.LegacyRowResource;
import org.apache.flink.types.Row;

import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
Expand Down Expand Up @@ -198,7 +197,6 @@ public void testSourceSinkWithKeyAndPartialValue() throws Exception {
}

@Test
@Ignore // FLINK-22559
public void testKafkaSourceSinkWithKeyAndFullValue() throws Exception {
// we always use a different topic name for each parameterized topic,
// in order to make sure the topic can be created.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,6 @@ private InternalTypeInfo<RowData> getInputTypeInfo() {
}

private RowType getConsumedRowType(ResolvedSchema schema) {
return (RowType) schema.toSinkRowDataType().getLogicalType();
return (RowType) schema.toPhysicalRowDataType().getLogicalType();
}
}