/* sqlPerf - SQL performance testing. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "options.h" void usage() /* Explain usage and exit. */ { errAbort( "sqlPerf - SQL performance testing\n" "usage:\n" " sqlPerf XXX\n" "options:\n" " -xxx=XXX\n" ); } static struct optionSpec options[] = { {NULL, 0}, }; void sqlPerf(char *XXX) /* sqlPerf - SQL performance testing. */ { } int main(int argc, char *argv[]) /* Process command line. */ { optionInit(&argc, argv, options); if (argc != 2) usage(); sqlPerf(argv[1]); return 0; }