Merge branch '2.3' into 2.4

This commit is contained in:
Johan Wikman
2020-05-13 11:04:18 +03:00
4 changed files with 9 additions and 1 deletions

View File

@ -419,8 +419,13 @@ int sqlite3GetToken(const unsigned char *z, int *tokenType){
}
case CC_BANG: {
if( z[1]!='=' ){
#ifdef MAXSCALE
*tokenType = TK_NOT;
return 1;
#else
*tokenType = TK_ILLEGAL;
return 2;
#endif
}else{
*tokenType = TK_NE;
return 2;