Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/spock_functions/functions/spock_version.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## NAME

`spock_version()`
`spock.spock_version()`

### SYNOPSIS

`spock_version ()`
`spock.spock_version ()`

### DESCRIPTION

Expand All @@ -13,7 +13,7 @@ Returns the Spock version in a human-readable major/minor form (for example, `5.
### EXAMPLE

```sql
postgres=# SELECT spock_version();
postgres=# SELECT spock.spock_version();
spock_version
---------------
5.0.5
Expand Down
6 changes: 3 additions & 3 deletions docs/spock_functions/functions/spock_version_num.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## NAME

spock_version_num()
spock.spock_version_num()

### SYNOPSIS

spock_version_num ()
spock.spock_version_num ()

### RETURNS

Expand Down Expand Up @@ -33,6 +33,6 @@ This function takes no arguments.
The following command returns the current Spock extension version as an
integer:

postgres=# SELECT spock_version_num();
postgres=# SELECT spock.spock_version_num();
-[ RECORD 1 ]-----+------
spock_version_num | 50005
Loading