chenyujie
chenyujie
## Statement In the file `src/storage/page/table_page.cpp`, Here is a `TablePage::GetNextTupleOffset` function. ```cpp // Warning: slot_end_offset may be smaller than tuple.GetLength() auto tuple_offset = slot_end_offset - tuple.GetLength(); auto offset_size = TABLE_PAGE_HEADER_SIZE...
I'm trying to compile [Postgres-17](https://github.com/postgres/postgres.git) using `bear` to generate `compile_commands.json`: ```bash ./configure --enable-debug --enable-cassert CFLAGS=-O0 bear -- make -j ``` This successfully produces the `compile_commands.json` file in the directory. When...