We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to scripts/patch.sh, it has applied Postgres.patch, but doesn't apply new_pg.patch.
scripts/patch.sh
Postgres.patch
new_pg.patch
CURRENT_PATH=$(dirname "$0") SPTAG_PATH="${CURRENT_PATH}/../thirdparty/SPTAG" (cd $SPTAG_PATH && git apply ../../patch/spann.patch) HNSW_PATH="${CURRENT_PATH}/../thirdparty/hnsw" (cd $HNSW_PATH && git apply ../../patch/hnsw.patch) POSTGRES_PATH="${CURRENT_PATH}/../thirdparty/Postgres" (cd $POSTGRES_PATH && git apply ../../patch/Postgres.patch)
In new_pg.patchline 306, it called multicol_topk() for multi-column search in PostgresMain.
multicol_topk()
PostgresMain
+ strcpy(result, "select * from multicol_topk('");
However, in Postgres.patch line 438,topk()is called but not multicol_topk() in PostgresMain.
topk()
+ strcpy(result, "select topk('");
The text was updated successfully, but these errors were encountered:
No branches or pull requests
According to
scripts/patch.sh
, it has appliedPostgres.patch
, but doesn't applynew_pg.patch
.In
new_pg.patch
line 306, it calledmulticol_topk()
for multi-column search inPostgresMain
.+ strcpy(result, "select * from multicol_topk('");
However, in
Postgres.patch
line 438,topk()
is called but notmulticol_topk()
inPostgresMain
.+ strcpy(result, "select topk('");
The text was updated successfully, but these errors were encountered: