[dbdump] remove keyword_check for now

This commit is contained in:
Timothy Stack 2021-03-28 14:06:54 -07:00
parent c0ed59e61e
commit 94b3c0d467
1 changed files with 4 additions and 0 deletions

View File

@ -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
}