]> granicus.if.org Git - pdns/commitdiff
comment is a reserved word in oracle
authorKees Monshouwer <mind04@monshouwer.org>
Thu, 24 Apr 2014 16:23:07 +0000 (18:23 +0200)
committermind04 <mind04@monshouwer.org>
Thu, 24 Apr 2014 16:23:07 +0000 (18:23 +0200)
modules/goraclebackend/goracle-schema.sql
modules/goraclebackend/goraclebackend.cc

index a65e2842cd7d4bd2dc0bb681044c2de3cae12a72..4a0205dc7ec3837d025246d2195e3fff0e184559 100644 (file)
@@ -49,7 +49,7 @@ CREATE TABLE comments (
   type            VARCHAR2(10) NOT NULL,
   modified_at     INTEGER NOT NULL,
   account         VARCHAR2(40) NOT NULL,
-  comment         VARCHAR2(4000) NOT NULL
+  "comment"       VARCHAR2(4000) NOT NULL
 );
 CREATE SEQUENCE comments_id_sequence;
 CREATE INDEX comments$nametype ON comments (name, type);
index 5815721d233b70bbb6bdfa76a4407e823a8365f0..bfcd109654e78fcdd94e1521bbd54ed4edb3a1ae 100644 (file)
@@ -126,8 +126,8 @@ public:
 
     declare(suffix, "get-all-domains-query", "Retrieve all domains", "select records.domain_id, records.name, records.content, domains.type, domains.master, domains.notified_serial, domains.last_check from records, domains where records.domain_id=domains.id and records.type='SOA' and (records.disabled=0 OR 1=%d)");
 
-    declare(suffix, "list-comments-query", "", "SELECT domain_id,name,type,modified_at,account,comment FROM comments WHERE domain_id=%d");
-    declare(suffix, "insert-comment-query", "", "INSERT INTO comments (id, domain_id, name, type, modified_at, account, comment) VALUES (comments_id_sequence.nextval, %d, '%s', '%s', %d, '%s', '%s')");
+    declare(suffix, "list-comments-query", "", "SELECT domain_id,name,type,modified_at,account,\"comment\" FROM comments WHERE domain_id=%d");
+    declare(suffix, "insert-comment-query", "", "INSERT INTO comments (id, domain_id, name, type, modified_at, account, \"comment\") VALUES (comments_id_sequence.nextval, %d, '%s', '%s', %d, '%s', '%s')");
     declare(suffix, "delete-comment-rrset-query", "", "DELETE FROM comments WHERE domain_id=%d AND name='%s' AND type='%s'");
     declare(suffix, "delete-comments-query", "", "DELETE FROM comments WHERE domain_id=%d");
   }