You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

upsidedown.proto 315B

1234567891011121314
  1. message BackIndexTermsEntry {
  2. required uint32 field = 1;
  3. repeated string terms = 2;
  4. }
  5. message BackIndexStoreEntry {
  6. required uint32 field = 1;
  7. repeated uint64 arrayPositions = 2;
  8. }
  9. message BackIndexRowValue {
  10. repeated BackIndexTermsEntry termsEntries = 1;
  11. repeated BackIndexStoreEntry storedEntries = 2;
  12. }