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
2 changes: 1 addition & 1 deletion solutions/01-connecting-to-confluent-cloud/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ under the License.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<flink.version>1.20.0</flink.version>
<confluent-plugin.version>0.129.0</confluent-plugin.version>
<confluent-plugin.version>1.20-42</confluent-plugin.version>
<kafka-clients.version>3.8.0</kafka-clients.version>
<schema-registry-client.version>7.7.0</schema-registry-client.version>
<target.java.version>21</target.java.version>
Expand Down
2 changes: 1 addition & 1 deletion solutions/02-querying-flink-tables/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ under the License.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<flink.version>1.20.0</flink.version>
<confluent-plugin.version>0.129.0</confluent-plugin.version>
<confluent-plugin.version>1.20-42</confluent-plugin.version>
<kafka-clients.version>3.8.0</kafka-clients.version>
<schema-registry-client.version>7.7.0</schema-registry-client.version>
<target.java.version>21</target.java.version>
Expand Down
2 changes: 1 addition & 1 deletion solutions/03-building-a-streaming-pipeline/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ under the License.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<flink.version>1.20.0</flink.version>
<confluent-plugin.version>0.129.0</confluent-plugin.version>
<confluent-plugin.version>1.20-42</confluent-plugin.version>
<kafka-clients.version>3.8.0</kafka-clients.version>
<schema-registry-client.version>7.7.0</schema-registry-client.version>
<target.java.version>21</target.java.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public void createFreeShippingTable_shouldCreateTheTable() {
TableResult result = orderService.createFreeShippingTable();

String status = result.collect().next().getFieldAs(0);
assertEquals("Table '"+orderQualifiedForFreeShippingShortTableName+"' created", status);
assertEquals("Command completed successfully.", status);

env.useCatalog("flink-table-api-java");
env.useDatabase("marketplace");
Expand Down
2 changes: 1 addition & 1 deletion solutions/04-windowing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ under the License.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<flink.version>1.20.0</flink.version>
<confluent-plugin.version>0.129.0</confluent-plugin.version>
<confluent-plugin.version>1.20-42</confluent-plugin.version>
<kafka-clients.version>3.8.0</kafka-clients.version>
<schema-registry-client.version>7.7.0</schema-registry-client.version>
<target.java.version>21</target.java.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void createFreeShippingTable_shouldCreateTheTable() {
TableResult result = orderService.createFreeShippingTable();

String status = result.collect().next().getFieldAs(0);
assertEquals("Table '"+orderQualifiedForFreeShippingShortTableName+"' created", status);
assertEquals("Command completed successfully.", status);

env.useCatalog("flink-table-api-java");
env.useDatabase("marketplace");
Expand Down Expand Up @@ -263,7 +263,7 @@ public void createOrdersForPeriodTable_shouldCreateTheTable() {
TableResult result = orderService.createOrdersForPeriodTable();

String status = result.collect().next().getFieldAs(0);
assertEquals("Table '"+customerOrdersForPeriodShortTableName+"' created", status);
assertEquals("Command completed successfully.", status);

env.useCatalog("flink-table-api-java");
env.useDatabase("marketplace");
Expand Down
2 changes: 1 addition & 1 deletion solutions/05-joins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ under the License.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<flink.version>1.20.0</flink.version>
<confluent-plugin.version>0.129.0</confluent-plugin.version>
<confluent-plugin.version>1.20-42</confluent-plugin.version>
<kafka-clients.version>3.8.0</kafka-clients.version>
<schema-registry-client.version>7.7.0</schema-registry-client.version>
<target.java.version>21</target.java.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void createOrderPlacedAfterClickTable_shouldCreateTheTable() {
TableResult result = clickService.createOrderPlacedAfterClickTable();

String status = result.collect().next().getFieldAs(0);
assertEquals("Table '"+orderPlacedAfterClickShortTableName+"' created", status);
assertEquals("Command completed successfully.", status);

env.useCatalog("flink-table-api-java");
env.useDatabase("marketplace");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void createFreeShippingTable_shouldCreateTheTable() {
TableResult result = orderService.createFreeShippingTable();

String status = result.collect().next().getFieldAs(0);
assertEquals("Table '"+orderQualifiedForFreeShippingShortTableName+"' created", status);
assertEquals("Command completed successfully.", status);

env.useCatalog("flink-table-api-java");
env.useDatabase("marketplace");
Expand Down Expand Up @@ -263,7 +263,7 @@ public void createOrdersForPeriodTable_shouldCreateTheTable() {
TableResult result = orderService.createOrdersForPeriodTable();

String status = result.collect().next().getFieldAs(0);
assertEquals("Table '"+customerOrdersForPeriodShortTableName+"' created", status);
assertEquals("Command completed successfully.", status);

env.useCatalog("flink-table-api-java");
env.useDatabase("marketplace");
Expand Down
2 changes: 1 addition & 1 deletion staging/01-connecting-to-confluent-cloud/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ under the License.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<flink.version>1.20.0</flink.version>
<confluent-plugin.version>0.129.0</confluent-plugin.version>
<confluent-plugin.version>1.20-42</confluent-plugin.version>
<kafka-clients.version>3.8.0</kafka-clients.version>
<schema-registry-client.version>7.7.0</schema-registry-client.version>
<target.java.version>21</target.java.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public void createFreeShippingTable_shouldCreateTheTable() {
TableResult result = orderService.createFreeShippingTable();

String status = result.collect().next().getFieldAs(0);
assertEquals("Table '"+orderQualifiedForFreeShippingShortTableName+"' created", status);
assertEquals("Command completed successfully.", status);

env.useCatalog("flink-table-api-java");
env.useDatabase("marketplace");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void createFreeShippingTable_shouldCreateTheTable() {
TableResult result = orderService.createFreeShippingTable();

String status = result.collect().next().getFieldAs(0);
assertEquals("Table '"+orderQualifiedForFreeShippingShortTableName+"' created", status);
assertEquals("Command completed successfully.", status);

env.useCatalog("flink-table-api-java");
env.useDatabase("marketplace");
Expand Down Expand Up @@ -263,7 +263,7 @@ public void createOrdersForPeriodTable_shouldCreateTheTable() {
TableResult result = orderService.createOrdersForPeriodTable();

String status = result.collect().next().getFieldAs(0);
assertEquals("Table '"+customerOrdersForPeriodShortTableName+"' created", status);
assertEquals("Command completed successfully.", status);

env.useCatalog("flink-table-api-java");
env.useDatabase("marketplace");
Expand Down
258 changes: 0 additions & 258 deletions staging/05-joins/pom.xml

This file was deleted.

Loading