You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@age.apache.org by GitBox <gi...@apache.org> on 2022/11/14 01:38:08 UTC

[GitHub] [age] JoshInnis commented on issue #353: AGE Onboarding - Setup Developer Environment 2

JoshInnis commented on issue #353:
URL: https://github.com/apache/age/issues/353#issuecomment-1312929154

   To debug a PostgreSQL session -
   
   Have Postgres configured with debugging flags enable and have a Postgres instance running.
   An open session running.
   Know the process of the session that you will be debugging (ps -C postgres).
   Execute the command gdb -p
   
   The basic GDB commands are -
   b for breakpoint, fx, b exec_simple_query or b 930
   c for continue - continues to the next breakpoint
   n for next line
   s for step into
   p for print, fx, p *node
   d for delete all breakpoints
   q for quit


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org