Skip to content

Instantly share code, notes, and snippets.

@objectsyndicate
Created December 11, 2011 07:55
Show Gist options
  • Select an option

  • Save objectsyndicate/1459215 to your computer and use it in GitHub Desktop.

Select an option

Save objectsyndicate/1459215 to your computer and use it in GitHub Desktop.
PostgreSQL Create Language post 1
-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