5b8c4168d4807c729fc8b1f199d9eb03c9411069 galt Thu Mar 3 18:40:54 2016 -0800 Replacing simple literal NOSQLINJ in string with the #define NOSQLINJ. This is slightly better because the compiler can catch a mis-spelling of the NOSQLINJ keyword. This was suggested by Angie. diff --git src/hg/lib/snp125Exceptions.c src/hg/lib/snp125Exceptions.c index 76cfb64..3837b4e 100644 --- src/hg/lib/snp125Exceptions.c +++ src/hg/lib/snp125Exceptions.c @@ -135,26 +135,26 @@ if (sep == ',') fputc('"',f); fputc(sep,f); if (sep == ',') fputc('"',f); fprintf(f, "%s", el->exception); if (sep == ',') fputc('"',f); fputc(lastSep,f); } /* -------------------------------- End autoSql Generated Code -------------------------------- */ void snp125ExceptionsTableCreate(struct sqlConnection *conn) /* create a snp125Exceptions table */ { char *createString = -"NOSQLINJ CREATE TABLE snp125Exceptions (\n" +NOSQLINJ "CREATE TABLE snp125Exceptions (\n" " chrom varchar(15) not null,\n" " chromStart int(10) unsigned not null,\n" " chromEnd int(10) unsigned not null,\n" " name varchar(15) not null,\n" " exception varchar(64) not null \n" ")\n"; sqlRemakeTable(conn, "snp125Exceptions", createString); }