aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2022-03-10 16:01:14 +0000
committerdrh <>2022-03-10 16:01:14 +0000
commit105dcaa5033e416d73eb68c1932a63efaa34a34f (patch)
tree8f3b75faae487b9eeaadfc422247364bd209bea8 /src/sqliteInt.h
parent7931f0a3d834067b77298eccd17b99f0c07982db (diff)
downloadsqlite-105dcaa5033e416d73eb68c1932a63efaa34a34f.tar.gz
sqlite-105dcaa5033e416d73eb68c1932a63efaa34a34f.zip
Refactor Window.pFunc into Window.pWFunc to disambiguate from other uses of
the variable or field named "pFunc". FossilOrigin-Name: d9475ebcde169272ad7b1d3a82b2326df55dafc68217bfecd9fcd1f2b89efbd9
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 a4015430d..90a7b6d6a 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -4146,7 +4146,7 @@ struct Window {
Window **ppThis; /* Pointer to this object in Select.pWin list */
Window *pNextWin; /* Next window function belonging to this SELECT */
Expr *pFilter; /* The FILTER expression */
- FuncDef *pFunc; /* The function */
+ FuncDef *pWFunc; /* The function */
int iEphCsr; /* Partition buffer or Peer buffer */
int regAccum; /* Accumulator */
int regResult; /* Interim result */