Skip to content

Commit 68608b7

Browse files
[PR #441/c9acec73 backport][stable-1] Fixed changelog and fixed documentation (#442)
Co-authored-by: aleksvagachev <[email protected]> Co-authored-by: Aleks Vagachev <[email protected]>
1 parent c70fe13 commit 68608b7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Diff for: changelogs/fragments/0-postgresql_info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
minor_changes:
1+
bugfixes:
22
- postgresql_info - when getting information about subscriptions, check the list of available columns in the pg_subscription table (https://github.com/ansible-collections/community.postgresql/issues/429).

Diff for: plugins/modules/postgresql_sequence.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -256,27 +256,27 @@
256256
sequence.
257257
returned: always
258258
type: int
259-
sample: '-1'
259+
sample: -1
260260
minvalue:
261261
description: The value of minvalue of the sequence.
262262
returned: always
263263
type: int
264-
sample: '1'
264+
sample: 1
265265
maxvalue:
266266
description: The value of maxvalue of the sequence.
267267
returned: always
268268
type: int
269-
sample: '9223372036854775807'
269+
sample: 9223372036854775807
270270
start:
271271
description: The value of start of the sequence.
272272
returned: always
273273
type: int
274-
sample: '12'
274+
sample: 12
275275
cycle:
276276
description: Shows if the sequence cycle or not.
277277
returned: always
278-
type: str
279-
sample: 'false'
278+
type: bool
279+
sample: false
280280
owner:
281281
description: Shows the current owner of the sequence
282282
after the successful run of the task.

0 commit comments

Comments
 (0)