Add index scan by sandy-bes · Pull Request #2351 · apache/age

and others added 2 commits

March 3, 2026 14:03
This commit fixes performance degradation during insertion scenarios by replacing SeqScan with IndexScan.

Co-authored-by: Daria Barsukova <d.barsukova@g.nsu.ru>
Co-authored-by: Alexandra Bondar <s6311704@gmail.com>

jrgemignani

jrgemignani added a commit to jrgemignani/age that referenced this pull request

Apr 14, 2026
The CI build did not fail the PR (we need to verify why and correct
it) due to the missing include -

src/backend/utils/adt/age_global_graph.c:273:25: error: implicit declaration of
function ‘namestrcpy’; did you mean ‘strcpy’? [-Wimplicit-function-declaration]
  273 |                         namestrcpy(lval, NameStr(*label_name_ptr));
      |                         ^~~~~~~~~~
      |                         strcpy

The build still works as the linker was able to resolve it. This PR
will add it in to correct the error going forward.

muhammadshoaib pushed a commit that referenced this pull request

Apr 14, 2026
The CI build did not fail the PR (we need to verify why and correct
it) due to the missing include -

src/backend/utils/adt/age_global_graph.c:273:25: error: implicit declaration of
function ‘namestrcpy’; did you mean ‘strcpy’? [-Wimplicit-function-declaration]
  273 |                         namestrcpy(lval, NameStr(*label_name_ptr));
      |                         ^~~~~~~~~~
      |                         strcpy

The build still works as the linker was able to resolve it. This PR
will add it in to correct the error going forward.