Skip to content

Commit

Permalink
docs(contributing): how to explore available functions and use new on…
Browse files Browse the repository at this point in the history
…es (#10)
  • Loading branch information
mrl5 authored Oct 8, 2024
1 parent cb073ad commit 3f6b7a9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@ cargo pgrx run pg16
```

Eventually you will be logged into postgres so now you can run:
```sql
CREATE EXTENSION pg_session_jwt;
```

Now you can explore available functions with
```sql
\dx auth.*
```

If you introduce new function make sure to reload the extension with
```sql
DROP EXTENSION pg_session_jwt;
CREATE EXTENSION pg_session_jwt;
```

0 comments on commit 3f6b7a9

Please sign in to comment.