Личный кабинет
Укажите e-mail, на который будет выслан код восстановления пароля.
На указанный вами адрес e-mail был выслан код подтверждения аккаунта. Введите полученный код для продолжения:
Введите новый пароль два раза:
Hello,A minor doc patch for this pagehttps://www.postgresql.org/docs/current/textsearch-limitations.htmland this line- The number of lexemes must be less than 2^64Docs wrongly claim "lexemes must be < 2^64" but the actual constraint is 1 MB total storage (MAXSTRPOS), and no 2^64 check exists in the code.From src/include/tsearch/ts_type.h: #define MAXSTRPOS ( (1<<20) - 1) // 1,048,575 bytes typedef struct { int32 size; // number of lexemes ... } TSVectorData; The attached patch:- Removes the incorrect 2^64 claim- Clarifies this means "distinct lexemes in a single tsvector value"Thanks,Dharin
#define MAXSTRPOS ( (1<<20) - 1) // 1,048,575 bytes typedef struct { int32 size; // number of lexemes ... } TSVectorData;
В списке pgsql-hackers по дате отправления:
Чтобы сделать работу с сайтом удобнее, мы используем cookie и аналитический сервис «Яндекс.Метрика». Продолжая пользоваться сайтом, вы соглашаетесь с их использованием.