Skip to content

Commit

Permalink
Merge pull request #93484 from cockroachdb/blathers/backport-release-…
Browse files Browse the repository at this point in the history
…22.1-93428
  • Loading branch information
rafiss authored Dec 13, 2022
2 parents c849cfb + 439a584 commit a4958c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/generated/sql/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -3273,7 +3273,7 @@ table. Returns an error if validation fails.</p>
</span></td><td>Immutable</td></tr>
<tr><td><a name="oid"></a><code>oid(int: <a href="int.html">int</a>) &rarr; oid</code></td><td><span class="funcdesc"><p>Converts an integer to an OID.</p>
</span></td><td>Immutable</td></tr>
<tr><td><a name="pg_backend_pid"></a><code>pg_backend_pid() &rarr; <a href="int.html">int</a></code></td><td><span class="funcdesc"><p>Returns a numerical ID attached to this session. This ID is part of the query cancellation key used by the wire protocol. This function was only added for compatibility, and unlike in Postgres, thereturned value does not correspond to a real process ID.</p>
<tr><td><a name="pg_backend_pid"></a><code>pg_backend_pid() &rarr; <a href="int.html">int</a></code></td><td><span class="funcdesc"><p>Returns a numerical ID attached to this session. This ID is part of the query cancellation key used by the wire protocol. This function was only added for compatibility, and unlike in Postgres, the returned value does not correspond to a real process ID.</p>
</span></td><td>Stable</td></tr>
<tr><td><a name="pg_collation_for"></a><code>pg_collation_for(str: anyelement) &rarr; <a href="string.html">string</a></code></td><td><span class="funcdesc"><p>Returns the collation of the argument</p>
</span></td><td>Stable</td></tr>
Expand Down
2 changes: 1 addition & 1 deletion pkg/sql/sem/builtins/pg_builtins.go
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ var pgBuiltins = map[string]builtinDefinition{
},
Info: "Returns a numerical ID attached to this session. This ID is " +
"part of the query cancellation key used by the wire protocol. This " +
"function was only added for compatibility, and unlike in Postgres, the" +
"function was only added for compatibility, and unlike in Postgres, the " +
"returned value does not correspond to a real process ID.",
Volatility: tree.VolatilityStable,
},
Expand Down

0 comments on commit a4958c5

Please sign in to comment.