Skip to content

Commit af304eb

Browse files
authored
Update README.md
1 parent 7563b9b commit af304eb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

WS/kfk.ksql/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,10 @@ We can fix this by co-partitioning, use the PARTITION BY clause. At KSQL promp
754754
```
755755
create stream driverprofile_rekeyed with (partitions=1) as select * from DRIVER_PROFILE partition by driver_name;
756756
757+
describe extended driver_profile;
758+
759+
describe extended driverprofile_rekeyed;
760+
757761
select dp2.driver_name, ct.countryname, dp2.rating
758762
from DRIVERPROFILE_REKEYED dp2
759763
left join COUNTRYTABLE ct on ct.countrycode=dp2.countrycode emit changes;

0 commit comments

Comments
 (0)