From 04de30e74cd19dc541ad84e3efa0d33a4a4df116 Mon Sep 17 00:00:00 2001 From: Alberto Santini Date: Mon, 16 Dec 2019 14:29:54 +0100 Subject: [PATCH] fix: untracked file after cloning on Windows (#4122) * fix: untracked file after cloning on Windows This patch resolves a problem on Windows. After cloning the repo, git status shows one untracked file. This is a due to the trailing period in the file name. --- ..._the_sink_topic_if_default_partitions_and_replicas_were_set} | 0 .../query-validation-tests/sink-partitions-replicas.json | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename ksql-functional-tests/src/test/resources/expected_topology/0_6_0-pre/{sink-partitions-replicas_-_Use_the_legacy_default_sink_properties_for_the_sink_topic_if_default_partitions_and_replicas_were_set. => sink-partitions-replicas_-_Use_the_legacy_default_sink_properties_for_the_sink_topic_if_default_partitions_and_replicas_were_set} (100%) diff --git a/ksql-functional-tests/src/test/resources/expected_topology/0_6_0-pre/sink-partitions-replicas_-_Use_the_legacy_default_sink_properties_for_the_sink_topic_if_default_partitions_and_replicas_were_set. b/ksql-functional-tests/src/test/resources/expected_topology/0_6_0-pre/sink-partitions-replicas_-_Use_the_legacy_default_sink_properties_for_the_sink_topic_if_default_partitions_and_replicas_were_set similarity index 100% rename from ksql-functional-tests/src/test/resources/expected_topology/0_6_0-pre/sink-partitions-replicas_-_Use_the_legacy_default_sink_properties_for_the_sink_topic_if_default_partitions_and_replicas_were_set. rename to ksql-functional-tests/src/test/resources/expected_topology/0_6_0-pre/sink-partitions-replicas_-_Use_the_legacy_default_sink_properties_for_the_sink_topic_if_default_partitions_and_replicas_were_set diff --git a/ksql-functional-tests/src/test/resources/query-validation-tests/sink-partitions-replicas.json b/ksql-functional-tests/src/test/resources/query-validation-tests/sink-partitions-replicas.json index 4f5ee2571fe9..d4d034b8d33d 100644 --- a/ksql-functional-tests/src/test/resources/query-validation-tests/sink-partitions-replicas.json +++ b/ksql-functional-tests/src/test/resources/query-validation-tests/sink-partitions-replicas.json @@ -26,7 +26,7 @@ "outputs": [{"topic": "S", "value": {"C1": 4}}] }, { - "name": "Use the legacy default sink properties for the sink topic if default partitions and replicas were set.", + "name": "Use the legacy default sink properties for the sink topic if default partitions and replicas were set", "statements": [ "CREATE STREAM TEST WITH (kafka_topic='input', value_format='AVRO');", "CREATE STREAM S as SELECT * FROM test;"