Created
December 11, 2011 07:55
-
-
Save objectsyndicate/1459215 to your computer and use it in GitHub Desktop.
PostgreSQL Create Language post 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -bash-3.2$ psql | |
| Password: | |
| Welcome to psql 8.3.11, the PostgreSQL interactive terminal. | |
| Type: \copyright for distribution terms | |
| \h for help with SQL commands | |
| \? for help with psql commands | |
| \g or terminate with semicolon to execute query | |
| \q to quit | |
| postgres=# select * from pg_language; | |
| lanname | lanowner | lanispl | lanpltrusted | lanplcallfoid | lanvalidator | lanacl | |
| ----------+----------+---------+--------------+---------------+--------------+-------- | |
| internal | 10 | f | f | 0 | 2246 | | |
| c | 10 | f | f | 0 | 2247 | | |
| sql | 10 | f | t | 0 | 2248 | | |
| (3 rows) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment