summaryrefslogtreecommitdiffstats
path: root/.gitignore
AgeCommit message (Collapse)Author
2018-09-23Respect \pset pager on expected behaviorMax Rothman
"\pset pager" has three possible values: "always", "on", and "off". pgcli previously treated all non-"off" values as "always". This change implements the expected behavior, which is to use the pager when the output is larger than the terminal height (See \pset pager in https://www.postgresql.org/docs/9.2/static/app-psql.html). Pgcli adds to this by also using the pager when the output is wider than the terminal width. Fixes #813
2018-05-15Restore gitignore entryRishi Ramraj
2018-05-14Add coverage to gitignoreRishi Ramraj
2018-05-14Update gitignoreRishi Ramraj
2015-04-11Packaging: first cut of working deb and rpm buildDhaivat Pandit
* to build deb & rpm simply run ``` version=<se.mv.er> vagrant provision ``` vagrant shell provisioner will run the inline script and generate a deb and an rpm file in the local directory. This is achieved by multivm Vagrantfile one for centos and one for debian * To install the generated deb - run sudo dpkg -i * /pgcli/pgcli_<se.mv.er>.deb (then sudo apt-get install -f if deps are missing on a clean debian install) * To install generated rpm - sudo yum install path-to-rpm * package will be installed under /usr/share/pgcli * script pgcli will be a symlink in /usr/local/bin/pgcli -> /usr/share/pgcli/bin/pgcli (with right shebang line #!/usr/share/pgcli/bin/python)
2015-01-10Add .gitignore for IDEA and pyvenvLudovic Gasc (GMLudo)
2014-12-17added support for ansi sql functions; added CASE, WHEN, FULL keywords; ↵Iryna Cherniavska
changed GROUP to GROUP BY
2014-12-14Add gitignore.Amjith Ramanujam