aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2019-06-11 21:02:15 +0000
committerdrh <drh@noemail.net>2019-06-11 21:02:15 +0000
commita7d6db6ac05cb7d51c19494feba51a65c6a21cd2 (patch)
tree592d8e6375267375ab6ebb24dea92078fef5b3e9 /src/sqliteInt.h
parent42be2ad30bad38f15a4c33956d6fe2b9c4b00989 (diff)
downloadsqlite-a7d6db6ac05cb7d51c19494feba51a65c6a21cd2.tar.gz
sqlite-a7d6db6ac05cb7d51c19494feba51a65c6a21cd2.zip
The affinity of the unlikely() function and its cousins should be "none".
Ticket [0c620df60bffd9ef] FossilOrigin-Name: 614ecb0af47038848e8ba2aed6b92db6f33ddc4aea6361795dbde440380f5a35
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 5c711f952..664820bf5 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2516,7 +2516,7 @@ struct Expr {
#define EP_Generic 0x000200 /* Ignore COLLATE or affinity on this tree */
#define EP_IntValue 0x000400 /* Integer value contained in u.iValue */
#define EP_xIsSelect 0x000800 /* x.pSelect is valid (otherwise x.pList is) */
-#define EP_Skip 0x001000 /* COLLATE, AS, or UNLIKELY */
+#define EP_Skip 0x001000 /* Operator does not contribute to affinity */
#define EP_Reduced 0x002000 /* Expr struct EXPR_REDUCEDSIZE bytes only */
#define EP_TokenOnly 0x004000 /* Expr struct EXPR_TOKENONLYSIZE bytes only */
#define EP_Win 0x008000 /* Contains window functions */