This repository was archived by the owner on May 20, 2025. It is now read-only.
This repository was archived by the owner on May 20, 2025. It is now read-only.
Running a query requires a begin/end block #49
Open
Description
- PGSQL Extension Version: 0.2.0
- VSCode Version: 1.35.1
- OS Version: MacOs Mojave 10.14.5
Steps to Reproduce:
- Run query 'SELECT * FROM pg_stat_activity;';
- Result returns 'cursors can only be used within the transaction that created them. '
- Run query BEGIN; SELECT * FROM pg_stat_activity; END;
- Query returns the result correctly
Is this the supposed to happen?