forked from ryanb/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
psqlrc
38 lines (28 loc) · 1.15 KB
/
psqlrc
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
\set QUIET 1
-- http://www.postgresql.org/docs/9.3/static/app-psql.html#APP-PSQL-PROMPTING
\set PROMPT1 '%[%033[1m%]%x%n@%/:%>%R>%[%033[0m%]% '
-- PROMPT2 is printed when the prompt expects more input, like when you type
-- SELECT * FROM<enter>. %R shows what type of input it expects.
\set PROMPT2 '%[%033[1m%]%x[...] %R>%[%033[0m%]% '
-- Errors are ignored in interactive sessions,
-- and not when reading script files.
\set ON_ERROR_ROLLBACK interactive
-- To have all queries display query times.
\timing
-- Verbose error reports.
\set VERBOSITY verbose
-- Use table format (with headers across the top) by default,
-- but switch to expanded table format when there's a lot of data,
-- which makes it much easier to read.
\x auto
-- Use a separate history file per-database.
--\set HISTFILE ~/.psql_history- :DBNAME
-- If a command is run more than once in a row,
-- only store it once in the history.
\set HISTCONTROL ignoredups
-- By default, NULL displays as an empty space. Is it actually an empty
-- string, or is it null? This makes that distinction visible.
\pset null '[null]'
-- Autocomplete will auto upper-case SQL
\set COMP_KEYWORD_CASE upper
\unset QUIET