Last active
August 31, 2021 09:19
-
-
Save morsapaes/64d5982561987e68a9c2459425aaea65 to your computer and use it in GitHub Desktop.
Analyzing Twitch streams with Materialize: Postgres source
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE MATERIALIZED SOURCE mz_source | |
FROM POSTGRES | |
CONNECTION 'host=postgres port=5432 user=postgres dbname=postgres password=postgres' | |
PUBLICATION 'mz_source'; | |
CREATE VIEWS FROM SOURCE mz_source (stream_tag_ids); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment