]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
docs: Fix order of fields returned in gsql query
authorPieter Lexis <pieter.lexis@powerdns.com>
Tue, 22 Aug 2017 12:30:41 +0000 (14:30 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Tue, 22 Aug 2017 12:30:41 +0000 (14:30 +0200)
Closes #5329

docs/backends/generic-sql.rst

index 6d295e9a7091386aa7ef0054be9ec7b6b344d9db..d3e421038ad5614089f4a7d4ee6da00fb04b19f6 100644 (file)
@@ -217,16 +217,16 @@ queries must return the following fields in order:
    checking is performed.
 -  prio: For MX and SRV records, this should be the priority of the
    record specified.
--  qtype: The ASCII representation of the qtype of this record. Examples
+-  type: The ASCII representation of the qtype of this record. Examples
    are 'A', 'MX', 'SOA', 'AAAA'. Make sure that this field returns an
    exact answer - PowerDNS won't recognise 'A ' as 'A'. This can be
    achieved by using a VARCHAR instead of a CHAR.
 -  domain_id: Unique identifier for this domain. This id must be unique
    across all backends. Must be a positive integer.
--  name: Actual name of a record. Must not end in a '.' and be fully
-   qualified - it is not relative to the name of the domain!
 -  disabled: Boolean, if set to true, this record is hidden from DNS
    clients, but can still be modified from the REST API. See :ref:`generic-sql-disabled-data`.
+-  name: Actual name of a record. Must not end in a '.' and be fully
+   qualified - it is not relative to the name of the domain!
 -  auth: A boolean describing if PowerDNS is authoritative for this
    record (DNSSEC)