]> granicus.if.org Git - pdns/commitdiff
drop useless index
authorPeter van Dijk <peter.van.dijk@netherlabs.nl>
Thu, 4 Jul 2013 18:26:29 +0000 (20:26 +0200)
committerPeter van Dijk <peter.van.dijk@netherlabs.nl>
Thu, 4 Jul 2013 18:26:29 +0000 (20:26 +0200)
pdns/docs/pdns.xml
pdns/no-dnssec.schema.mysql.sql

index bbdc0ce02e1f7971b5991f573305aa36c8b00c7a..2639a0bffdab42ec5db5116ea22af7ae816bb20b 100644 (file)
@@ -12292,12 +12292,15 @@ create index recordorder on records (domain_id, ordername text_pattern_ops);
       </para>
     </note>
     <para>
-      The `ip` field in the supermasters table (for the various gsql backends) has been stretched to 64 characters
+      The `ip' field in the supermasters table (for the various gsql backends) has been stretched to 64 characters
       to support IPv6.
     </para>
     <para>
       pdnssec secure-zone now creates one KSK and one ZSK, instead of two ZSKs.
     </para>
+    <para>
+      The `rec_name_index' index was dropped from the gmysql schema, as it was superfluous.
+    </para>
   </sect1>
 
   </chapter>
index 9c61c309d54174d8cc4a1eae2b16ccb421da35b2..86dfcfb3f37483b9bc714589d114d7d10b154711 100644 (file)
@@ -23,7 +23,6 @@ CREATE TABLE records (
   primary key(id)
 ) Engine=InnoDB;
 
-CREATE INDEX rec_name_index ON records(name);
 CREATE INDEX nametype_index ON records(name,type);
 CREATE INDEX domain_id ON records(domain_id);