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
I got following error while making it:
lsm3.h:46:9: error: unknown type name ‘BTOptions’ 46 | BTOptions nbt_opts; /* Standard B-Tree options */ | ^~~~~~~~~ lsm3.c: In function ‘lsm3_truncate_index’: lsm3.c:209:32: error: implicit declaration of function ‘BuildDummyIndexInfo’; did you mean ‘BuildIndexInfo’? [-Werror=implicit-function-declaration] 209 | IndexInfo* indexInfo = BuildDummyIndexInfo(index); | ^~~~~~~~~~~~~~~~~~~ | BuildIndexInfo lsm3.c:209:32: warning: initialization of ‘IndexInfo *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion] lsm3.c: In function ‘lsm3_merge_indexes’: lsm3.c:236:37: error: ‘BTREE_AM_OID’ undeclared (first use in this function); did you mean ‘BTREE_MAGIC’? 236 | base_index->rd_rel->relam = BTREE_AM_OID; | ^~~~~~~~~~~~ | BTREE_MAGIC lsm3.c:236:37: note: each undeclared identifier is reported only once for each function it appears in lsm3.c:243:21: error: implicit declaration of function ‘BTreeTupleIsPosting’ [-Werror=implicit-function-declaration] 243 | if (BTreeTupleIsPosting(itup))
The text was updated successfully, but these errors were encountered:
Which version of Postgres you are using? I just ported Lsm3 to PG-15
Sorry, something went wrong.
No branches or pull requests
I got following error while making it:
The text was updated successfully, but these errors were encountered: