community.general/lib/ansible/modules/database/postgresql
Abhijit Menon-Sen 0addd53926 Don't expect (postgres) SERVER_VERSION to be M.N (#30417)
It could be something like '10beta4', which StrictVersion() would
reject. When Postgres 10 is released, it will be '10', which
StrictVersion() would STILL reject.

Fortunately, psycopg2 has a 'server_version' connection attribute that
is guaranteed to be an integer like 90605 for version 9.6.5, or 100000
for version 10. We can safely use this for version-specific code.
2017-09-15 18:03:06 +05:30
..
__init__.py Some more module categorization. 2016-12-08 11:22:25 -05:00
postgresql_db.py postgresql_db: Document that name and db are aliases (#29180) 2017-09-10 22:29:15 -04:00
postgresql_ext.py Update metadata to 1.1 2017-08-15 23:12:08 -07:00
postgresql_lang.py Update metadata to 1.1 2017-08-15 23:12:08 -07:00
postgresql_privs.py Update metadata to 1.1 2017-08-15 23:12:08 -07:00
postgresql_schema.py Update metadata to 1.1 2017-08-15 23:12:08 -07:00
postgresql_user.py Don't expect (postgres) SERVER_VERSION to be M.N (#30417) 2017-09-15 18:03:06 +05:30