File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
lib/extensions/postgres_cdc_rls Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -76,9 +76,9 @@ defmodule Extensions.PostgresCdcRls.Replications do
7676 SELECT wal->>'type' as type,
7777 wal->>'schema' as schema,
7878 wal->>'table' as table,
79- wal->>'columns' as columns,
80- wal->>'record' as record,
81- wal->>'old_record' as old_record,
79+ COALESCE( wal->>'columns', '[]') as columns,
80+ COALESCE( wal->>'record', '{}') as record,
81+ COALESCE( wal->>'old_record', '{}') as old_record,
8282 wal->>'commit_timestamp' as commit_timestamp,
8383 subscription_ids,
8484 errors
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ defmodule Realtime.MixProject do
44 def project do
55 [
66 app: :realtime ,
7- version: "2.67.6 " ,
7+ version: "2.67.7 " ,
88 elixir: "~> 1.18" ,
99 elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
1010 start_permanent: Mix . env ( ) == :prod ,
You can’t perform that action at this time.
0 commit comments