Reputation: 1258
I am dealing with a frustrating issue (pgAdmin crashes on query builder) that is described in this question dealing with pgAdmin 3. The accepted answer gives the solution of deleting a file that was corrupted, but I can't find the file on Mac. I suspect that it is named differently in pgAdmin4.
Where can I find “pgadmin_histoqueries.xml” (mentioned in the linked question) equivalent for pgAdmin 4 on Mac?
Upvotes: 0
Views: 842
Reputation: 11
In mac home directory you can find .pgadmin
hidden file. Use ls -la
in terminal to show all hidden files in the current directory. You can delete or
rename with mv .pgadmin .pgadmin.bak
. Then restart to make sure.
Hope it will help you.
Upvotes: 1