diff options
author | drh <> | 2023-05-10 11:05:59 +0000 |
---|---|---|
committer | drh <> | 2023-05-10 11:05:59 +0000 |
commit | 5af043c2e7a585da4b727cb8d3589f23de3ff2b6 (patch) | |
tree | e323ff8550d23f355ba8e2074d3a45a8fecc6cce /src/sqliteInt.h | |
parent | d733ee5cca2dbad91f99a193cb1d41e94e983df9 (diff) | |
download | sqlite-5af043c2e7a585da4b727cb8d3589f23de3ff2b6.tar.gz sqlite-5af043c2e7a585da4b727cb8d3589f23de3ff2b6.zip |
Rename sqlite3IsTableConstraint() to sqlite3IsSingleTableConstraint() and
improve its header comment, in an attempt to make the code easier to reason
about. No functional changes - should generate identical machine code.
FossilOrigin-Name: 5dae897431a0a9dbb354c4a8a48f935ea7438035d96f90b83dd81eae434c8277
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index ea12116ca..935d03805 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4906,7 +4906,7 @@ int sqlite3ExprIsConstantNotJoin(Expr*); int sqlite3ExprIsConstantOrFunction(Expr*, u8); int sqlite3ExprIsConstantOrGroupBy(Parse*, Expr*, ExprList*); int sqlite3ExprIsTableConstant(Expr*,int); -int sqlite3ExprIsTableConstraint(Expr*,const SrcItem*); +int sqlite3ExprIsSingleTableConstraint(Expr*,const SrcItem*); #ifdef SQLITE_ENABLE_CURSOR_HINTS int sqlite3ExprContainsSubquery(Expr*); #endif |