Skip to content

Commit

Permalink
Release 1.3 (stable)
Browse files Browse the repository at this point in the history
  • Loading branch information
gleu committed Apr 4, 2022
1 parent 32fa4b9 commit abf3a4d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pg_log_userqueries",
"abstract": "Module to log user queries",
"description": "pg_log_userqueries is a PostgreSQL module that logs each query executed by a superuser. It records each query in the standard log file. Additionally you can log per database and/or per user queries.",
"version": "1.2.0",
"version": "1.3.0",
"maintainer": "Guillaume Lelarge <guillaume@lelarge.info>",
"license": {
"PostgreSQL": "http://www.postgresql.org/about/licence"
Expand All @@ -11,11 +11,11 @@
"provides": {
"pg_log_userqueries": {
"file": "pg_log_userqueries.so",
"version": "1.2.0"
"version": "1.3.0"
}
},
"meta-spec": {
"version": "1.2.0",
"version": "1.3.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
Expand Down
4 changes: 4 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,7 @@ As pg_log_userqueries is a shared_preload_library, you'll have to restart Postgr

* pg_log_userqueries.file_switchoff: path to a file that must be root-owned. If this file is present, pg_log_userqueries won't log anymore
* pg_log_userqueries.time_switchoff: frequency at which backends will check file_switchoff's presence

If you need to know the current version number of this library, you can do this:

strings $(pg_config --libdir)/pg_log_userqueries.so | grep "pg_log_userqueries version"
2 changes: 1 addition & 1 deletion pg_log_userqueries.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
*-------------------------------------------------------------------------
*/
#ident "pg_log_userqueries version 1.2"
#ident "pg_log_userqueries version 1.3"

#include "postgres.h"

Expand Down

0 comments on commit abf3a4d

Please sign in to comment.