safi50 commented on issue #915:
URL: https://github.com/apache/age/issues/915#issuecomment-1546079088
Did you check if your **AGE** extension was properly initialized after
Kubernetes db pod restarted ?
Enter the following in your psql cli to get list of postgres extensions:
```
SELECT * FROM pg_extension
```
If age is enabled, you'll see it in the list of estensions, if not, run:
```
CREATE EXTENSION age;
LOAD 'age';
SET search_path = ag_catalog, "$user", public;
```
Try running your query again after running above. Also confirm that
`DBeaver` is correctly connected to your PostgreSQL database and the AGE
extension is available in the connected database. Try restarting Dbeaver and
refreshing the PostgreSQL server.
--
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]