[dbdump] remove keyword_check for now

pull/857/head
Timothy Stack 3 years ago
parent c0ed59e61e
commit 94b3c0d467

@ -146,7 +146,11 @@ static char quoteChar(const char *zName){
for(i=0; zName[i]; i++){
if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ) return '"';
}
#if 0
return sqlite3_keyword_check(zName, i) ? '"' : 0;
#else
return 0;
#endif
}

Loading…
Cancel
Save