]> granicus.if.org Git - pdns/commitdiff
Add search records/comments to gOracle backend
authorAki Tuomi <cmouse@desteem.org>
Thu, 30 Jul 2015 17:13:10 +0000 (20:13 +0300)
committerAki Tuomi <cmouse@cmouse.fi>
Tue, 4 Aug 2015 12:26:16 +0000 (15:26 +0300)
modules/goraclebackend/goraclebackend.cc

index b45a5ced8835464ec40dd315d8e9f593c6861452..6ae4c87855a215e812e230dcb164019012e7749f 100644 (file)
@@ -140,6 +140,8 @@ public:
     declare(suffix, "insert-comment-query", "", "INSERT INTO comments (id, domain_id, name, type, modified_at, account, \"comment\") VALUES (comments_id_sequence.nextval, :domain_id, :qname, :qtype, :modified_at, :account, :content)");
     declare(suffix, "delete-comment-rrset-query", "", "DELETE FROM comments WHERE domain_id=:domain_id AND name=:qname AND type=:qtype");
     declare(suffix, "delete-comments-query", "", "DELETE FROM comments WHERE domain_id=:domain_id");
+    declare(suffix, "search-records-query", "", record_query+" name LIKE :value OR content LIKE :value2 LIMIT :limit");
+    declare(suffix, "search-comments-query", "", "SELECT domain_id,name,type,modified_at,account,comment FROM comments WHERE name LIKE :value OR comment LIKE :value2 LIMIT :limit");
 
   }