From e4f6d8cafb5e23b863776ffc0ff09fc0e8e46dcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ask=20Bj=C3=B8rn=20Hansen?= Date: Sat, 7 Mar 2026 16:07:20 -0800 Subject: [PATCH] fix(chdb): rename geodns references to dns ClickHouse DNS tables moved from geodns/geodns3 to a single dns database. --- chdb/geoqueries.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chdb/geoqueries.go b/chdb/geoqueries.go index 9265e16..050cda8 100644 --- a/chdb/geoqueries.go +++ b/chdb/geoqueries.go @@ -1,6 +1,6 @@ package chdb -// queries to the GeoDNS database +// queries to the DNS database import ( "context" @@ -208,7 +208,7 @@ func (d *ClickHouse) DNSQueries(ctx context.Context) ([]DNSQueryCounts, error) { sum(q)/300 as avg, max(q) as max from ( select window as t, sumSimpleState(queries) as q - from geodns.by_origin_1s + from dns.by_origin_1s where window > FROM_UNIXTIME(?) and Origin IN ('pool.ntp.org', 'g.ntpns.org')