|
1 | 1 | <!--
|
2 |
| -$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.24 2002/05/22 17:20:58 petere Exp $ |
| 2 | +$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.25 2002/06/20 15:44:06 momjian Exp $ |
3 | 3 | PostgreSQL documentation
|
4 | 4 | -->
|
5 | 5 |
|
@@ -214,25 +214,27 @@ ERROR: PL handler function <replaceable class="parameter">funcname</replaceable
|
214 | 214 |
|
215 | 215 | <screen>
|
216 | 216 | Table "pg_language"
|
217 |
| - Attribute | Type | Modifier |
218 |
| ----------------+---------+---------- |
219 |
| - lanname | name | |
220 |
| - lanispl | boolean | |
221 |
| - lanpltrusted | boolean | |
222 |
| - lanplcallfoid | oid | |
223 |
| - lancompiler | text | |
224 |
| - |
225 |
| - lanname | lanispl | lanpltrusted | lanplcallfoid | lancompiler |
226 |
| --------------+---------+--------------+---------------+------------- |
227 |
| - internal | f | f | 0 | n/a |
228 |
| - c | f | f | 0 | /bin/cc |
229 |
| - sql | f | t | 0 | postgres |
| 217 | + Attribute | Type | Modifier |
| 218 | +---------------+-----------+---------- |
| 219 | + lanname | name | |
| 220 | + lanispl | boolean | |
| 221 | + lanpltrusted | boolean | |
| 222 | + lanplcallfoid | oid | |
| 223 | + lanvalidator | oid | |
| 224 | + lancompiler | text | |
| 225 | + lanacl | aclitem[] | |
| 226 | + |
| 227 | + lanname | lanispl | lanpltrusted | lanplcallfoid | lanvalidator | lancompiler | lanacl |
| 228 | +-------------+---------+--------------+---------------+--------------+-------------+-------- |
| 229 | + internal | f | f | 0 | 2246 | n/a | |
| 230 | + c | f | f | 0 | 2247 | /bin/cc | |
| 231 | + sql | f | t | 0 | 2248 | postgres | {=U} |
230 | 232 | </screen>
|
231 | 233 | </para>
|
232 | 234 |
|
233 | 235 | <para>
|
234 |
| - At present, the definition of a procedural language cannot be |
235 |
| - changed once it has been created. |
| 236 | + At present, with the exception of the permissions, the definition |
| 237 | + of a procedural language cannot be changed once it has been created. |
236 | 238 | </para>
|
237 | 239 |
|
238 | 240 | <para>
|
|
0 commit comments