JoshInnis commented on issue #352: URL: https://github.com/apache/age/issues/352#issuecomment-1312927472
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 <pid> 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
