We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9584c0f commit 205bffdCopy full SHA for 205bffd
1 file changed
migrations/1767183702000_lsn_to_text.sql
@@ -0,0 +1,4 @@
1
+-- Change lsn column from pg_lsn to text to avoid ETL schema mismatch
2
+-- The ETL crate doesn't have pg_lsn in its type mappings, causing "schema has changed" errors
3
+alter table pgstream.events
4
+alter column lsn type text using lsn::text;
0 commit comments