diff options
author | Tomas Vondra | 2019-03-31 01:29:58 +0000 |
---|---|---|
committer | Tomas Vondra | 2019-03-31 01:29:58 +0000 |
commit | 0f5493fdf19306314e7a729750a83b26a3264412 (patch) | |
tree | fad37598f5a98ff82a45d95a00e6b2532276d1f9 | |
parent | 428b260f87e8861ba8e58807b69d433db491c4f4 (diff) |
Fix typo
Author: John Naylor
-rw-r--r-- | src/backend/statistics/mcv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/statistics/mcv.c b/src/backend/statistics/mcv.c index 3e9d39c25a..90e639ba0a 100644 --- a/src/backend/statistics/mcv.c +++ b/src/backend/statistics/mcv.c @@ -931,7 +931,7 @@ statext_mcv_deserialize(bytea *data) mcvlen += nitems * MAXALIGN(sizeof(Datum) * ndims); mcvlen += nitems * MAXALIGN(sizeof(bool) * ndims); - /* we don't quite need to align this, but it makes some assers easier */ + /* we don't quite need to align this, but it makes some asserts easier */ mcvlen += MAXALIGN(datalen); /* now resize the deserialized MCV list, and compute pointers to parts */ |