pub const DHT_OPS_IN_VALIDATION_LIMBO: &str = "-- no-sql-format --\nSELECT\n  Action.blob as action_blob,\n  Entry.blob as entry_blob,\n  DhtOp.type as dht_type,\n  DhtOp.hash as dht_hash,\n  DhtOp.rowid as rowid\nFROM\n  Action\n  JOIN DhtOp ON DhtOp.action_hash = Action.hash\n  LEFT JOIN Entry ON Action.entry_hash = Entry.hash\nWHERE\n  when_integrated IS NULL\n  AND (\n    validation_stage IS NULL\n    OR validation_stage < 3\n  )\n";