+ .quote = testdb_quote, /* quoting function */
+ .version_report = testdb_version_report /* version reporting */
+};
+
+static lookup_info testdb2_lookup_info = {
+ .name = US"testdb2", /* lookup name */
+ .type = lookup_querystyle, /* query-style lookup */
+ .open = testdb_open, /* open function */
+ .check = NULL, /* check function */
+ .find = testdb_find, /* find function */
+ .close = NULL, /* no close function */
+ .tidy = NULL, /* no tidy function */
+ .quote = testdb_quote, /* same quoting function */
+ .version_report = testdb_version_report /* version reporting */
+};
+
+static lookup_info testdb3_lookup_info = {
+ .name = US"testdb_nq", /* lookup name */
+ .type = lookup_querystyle, /* query-style lookup */
+ .open = testdb_open, /* open function */
+ .check = NULL, /* check function */
+ .find = testdb_find, /* find function */
+ .close = NULL, /* no close function */
+ .tidy = NULL, /* no tidy function */
+ .quote = NULL, /* NO quoting function */