-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog-pg-language.html
More file actions
48 lines (48 loc) · 8.6 KB
/
Copy pathcatalog-pg-language.html
File metadata and controls
48 lines (48 loc) · 8.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>49.28. pg_language</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets V1.78.1" /><link rel="home" href="index.html" title="PostgreSQL 9.5.4文書" /><link rel="up" href="catalogs.html" title="第49章 システムカタログ" /><link rel="prev" href="catalog-pg-inherits.html" title="49.27. pg_inherits" /><link rel="next" href="catalog-pg-largeobject.html" title="49.29. pg_largeobject" /><link rel="copyright" href="legalnotice.html" title="法的告知" /><meta name="viewport" content="width=device-width,initial-scale=1.0" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><td width="20%" align="left" colspan="2"></td><th width="60%" align="center"><a accesskey="h" href="index.html">PostgreSQL 9.5.4文書</a></th><td width="20%" align="right"><div class="actions"><a class="issue" href="https://github.com/pgsql-jp/jpug-doc/issues/new?title=version 9.5.4 catalog-pg-language.html">誤訳等の報告</a></div></td></tr><tr><td width="10%" align="left" valign="top"><a accesskey="p" href="catalog-pg-inherits.html">前へ</a> </td><td width="10%" align="left" valign="top"><a accesskey="u" href="catalogs.html">上へ</a></td><td width="60%" align="center">49.28. <code class="structname">pg_language</code></td><td width="20%" align="right" valign="top"> <a accesskey="n" href="catalog-pg-largeobject.html">次へ</a></td></tr></table><hr /></div><div class="sect1" id="catalog-pg-language"><div class="titlepage"><div><div><h2 class="title" style="clear: both">49.28. <code class="structname">pg_language</code></h2></div></div></div><a id="idp112473360" class="indexterm"></a><p><span class="original">
The catalog <structname>pg_language</structname> registers
languages in which you can write functions or stored procedures.
See <xref linkend="sql-createlanguage">
and <xref linkend="xplang"> for more information about language handlers.
</span><code class="structname">pg_language</code>カタログはユーザ定義関数やストアドプロシージャを作成することができる言語を登録します。
言語ハンドラの詳細は<a class="xref" href="sql-createlanguage.html" title="CREATE LANGUAGE"><span class="refentrytitle">CREATE LANGUAGE</span></a>と<a class="xref" href="xplang.html" title="第39章 手続き言語">39章<em>手続き言語</em></a>を参照してください。
</p><div class="table" id="idp112476912"><p class="title"><strong>表49.28 <code class="structname">pg_language</code>の列</strong></p><div class="table-contents"><span class="original">
<title><structname>pg_language</> Columns</title>
</span><table summary="pg_languageの列" border="1"><colgroup><col /><col /><col /><col /></colgroup><thead><tr><th>名前</th><th>型</th><th>参照先</th><th>説明</th></tr></thead><tbody><tr><td><code class="structfield">oid</code></td><td><code class="type">oid</code></td><td> </td><td>行識別子(隠し属性です。明示的に選択しなければなりません)</td></tr><tr><td><code class="structfield">lanname</code></td><td><code class="type">name</code></td><td> </td><td>言語名</td></tr><tr><td><code class="structfield">lanowner</code></td><td><code class="type">oid</code></td><td><code class="literal"><a class="link" href="catalog-pg-authid.html" title="49.8. pg_authid"><code class="structname">pg_authid</code></a>.oid</code></td><td>言語の所有者</td></tr><tr><td><code class="structfield">lanispl</code></td><td><code class="type">bool</code></td><td> </td><td><span class="original">
This is false for internal languages (such as
<acronym>SQL</acronym>) and true for user-defined languages.
Currently, <application>pg_dump</application> still uses this
to determine which languages need to be dumped, but this might be
replaced by a different mechanism in the future.
</span>(<acronym class="acronym">SQL</acronym>などの)内部言語では偽となり、ユーザ定義言語では真となります。
現在<span class="application">pg_dump</span>ではダンプされる必要のある言語を決定するためにこれを使用していますが、いずれ別の処理方法に置き換えられる可能性があります。
</td></tr><tr><td><code class="structfield">lanpltrusted</code></td><td><code class="type">bool</code></td><td> </td><td><span class="original">
True if this is a trusted language, which means that it is believed
not to grant access to anything outside the normal SQL execution
environment. Only superusers can create functions in untrusted
languages.
</span>信頼できる言語である場合は真です。
これは通常のSQL実行環境の外部に対してまったくアクセスを許可しないことを意味しています。
スーパーユーザだけが信頼できない言語で関数を作成することができます。
</td></tr><tr><td><code class="structfield">lanplcallfoid</code></td><td><code class="type">oid</code></td><td><code class="literal"><a class="link" href="catalog-pg-proc.html" title="49.37. pg_proc"><code class="structname">pg_proc</code></a>.oid</code></td><td><span class="original">
For noninternal languages this references the language
handler, which is a special function that is responsible for
executing all functions that are written in the particular
language
</span>内部言語でない場合、特定の言語で作成されたすべての関数の実行に責任を持つ特別な関数である言語ハンドラを参照します。
</td></tr><tr><td><code class="structfield">laninline</code></td><td><code class="type">oid</code></td><td><code class="literal"><a class="link" href="catalog-pg-proc.html" title="49.37. pg_proc"><code class="structname">pg_proc</code></a>.oid</code></td><td><span class="original">
This references a function that is responsible for executing
<quote>inline</> anonymous code blocks
(<xref linkend="sql-do"> blocks).
Zero if inline blocks are not supported.
</span>これは<span class="quote">「<span class="quote">インライン</span>」</span>匿名コードブロック(<a class="xref" href="sql-do.html" title="DO"><span class="refentrytitle">DO</span></a>ブロック)の実行に責任を持つ関数を参照します。
インラインブロックをサポートしない場合はゼロ。
</td></tr><tr><td><code class="structfield">lanvalidator</code></td><td><code class="type">oid</code></td><td><code class="literal"><a class="link" href="catalog-pg-proc.html" title="49.37. pg_proc"><code class="structname">pg_proc</code></a>.oid</code></td><td><span class="original">
This references a language validator function that is responsible
for checking the syntax and validity of new functions when they
are created. Zero if no validator is provided.
</span>これは、新しい関数が作成された時に構文や有効性の検査を引き受ける言語有効性検査関数を参照します。
有効性検査関数がない場合はゼロになります。
</td></tr><tr><td><code class="structfield">lanacl</code></td><td><code class="type">aclitem[]</code></td><td> </td><td>アクセス権限。
<a class="xref" href="sql-grant.html" title="GRANT"><span class="refentrytitle">GRANT</span></a>と<a class="xref" href="sql-revoke.html" title="REVOKE"><span class="refentrytitle">REVOKE</span></a>を参照してください。
</td></tr></tbody></table></div></div><br class="table-break" /></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="catalog-pg-inherits.html">前へ</a> </td><td width="20%" align="center"><a accesskey="u" href="catalogs.html">上へ</a></td><td width="40%" align="right"> <a accesskey="n" href="catalog-pg-largeobject.html">次へ</a></td></tr><tr><td width="40%" align="left" valign="top">49.27. <code class="structname">pg_inherits</code> </td><td width="20%" align="center"><a accesskey="h" href="index.html">ホーム</a></td><td width="40%" align="right" valign="top"> 49.29. <code class="structname">pg_largeobject</code></td></tr></table></div></body></html>