Skip to content

Commit 05fc9bc

Browse files
committed
pdns: update SQL "domains" view to be compatible with pdns-server 4.7
https://doc.powerdns.com/authoritative/upgrading.html#to-4-7-0
1 parent 3fe48a0 commit 05fc9bc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

db/dns_internal.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ select
1010
null::int as last_check,
1111
'NATIVE'::text as type,
1212
null::int as notified_serial,
13-
null::text as account
13+
null::text as account,
14+
null::text as catalog
1415
from public.server
1516
where servertype_id = 'provider_domain';
1617

db/dns_public.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ select
1010
null::int as last_check,
1111
'NATIVE'::text as type,
1212
null::int as notified_serial,
13-
null::text as account
13+
null::text as account,
14+
null::text as catalog
1415
from public.server
1516
where servertype_id = 'provider_domain';
1617

0 commit comments

Comments
 (0)