ddcp 0.2.4

Distributed decentralized database-to-database copy
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>

#include "sqlite3ext.h"
SQLITE_EXTENSION_INIT3

extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
{
  // Note: all fuzzing is done from Python in `test_sync_prop`
    return 0;
}