Skip to content

Commit 2d07311

Browse files
authored
Update CustomForEachSink.java
1 parent 50b8933 commit 2d07311

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/main/java/com/example/CustomForEachSink.java‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
1313
Prepare the mysql database
1414
1. create database
15-
create database iot;
15+
mysql> create database iot;
1616
2. Create a table inside iot database
17-
create table tags(tag varchar(255) primary key not null, count bigint not null);
17+
mysql> create table tags(tag varchar(255) primary key not null, count bigint not null);
1818
1919
Add mysql jdbc as maven dependency to the project.
2020

0 commit comments

Comments
(0)