Results for tests with date ranges
[pazpar2-moved-to-github.git] / src / record.h
index b7efc2e..66df1af 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of Pazpar2.
-   Copyright (C) 2006-2011 Index Data
+   Copyright (C) 2006-2012 Index Data
 
 Pazpar2 is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
@@ -57,13 +57,15 @@ union data_types * data_types_assign(NMEM nmem,
 struct record {
     struct client *client;
     // Array mirrors list of metadata fields in config
-    struct record_metadata **metadata; 
+    struct record_metadata **metadata;
     // Array mirrors list of sortkey fields in config
     union data_types **sortkeys;
     // Next in cluster of merged records       
     struct record *next;  
     // client result set position;
     int position;
+    // checksum
+    unsigned checksum;
 };