1
0
Fork 0
Commit Graph

414 Commits

Author SHA1 Message Date
Daniel Schwarz 5c80d10fc0 Merge branch 'master' of https://github.com/qwesda/pgcli
Conflicts:
	pgcli/pgcompleter.py
2015-01-08 14:36:27 +01:00
Daniel Schwarz dc57081aa8 escape column names if they equal keywords or contain special chars 2015-01-08 14:34:55 +01:00
darikg 5b36f2b182 Add comments explaining host defaults and password handling 2015-01-08 07:58:44 -05:00
Marc Abramowitz 5a35128471 Update README.rst 2015-01-08 03:13:20 -08:00
Alexander Kukushkin 8b9a83dafd Merge branch 'master' of github.com:amjith/pgcli 2015-01-08 08:57:19 +01:00
Amjith Ramanujam 2e4545c3de Fix the issue with bug for displaying multiple tables. 2015-01-07 23:47:55 -08:00
Amjith Ramanujam 1f850df753 Merge pull request #51 from simnim/master
made a little bit of the sql prettier
2015-01-07 21:45:18 -08:00
Nick Hahner 0464d24aaa Fixed comma 2015-01-07 20:42:38 -08:00
darikg c9968eb0cc Merge remote-tracking branch 'upstream/master' 2015-01-07 18:53:30 -05:00
darikg f9ea8a3028 Merge branch 'envvars' of https://github.com/darikg/pgcli 2015-01-07 18:22:27 -05:00
Amjith Ramanujam 5dad6e9b3a Merge pull request #69 from macobo/karl-fix-syntaxerror-with-plus
Fix syntaxerror for special commands like \d+
2015-01-07 14:47:14 -08:00
Amjith Ramanujam e2419c50f6 Merge pull request #74 from seegno/support/fix-typo
Fix typos in README
2015-01-07 14:22:34 -08:00
Tiago Ribeiro 4559920622 Fix typos in README 2015-01-07 22:20:53 +00:00
Amjith Ramanujam 6a9065df1c Merge pull request #71 from macobo/karl-travis-once-per-python-version
Travis - run tox only once per python version
2015-01-07 14:10:44 -08:00
Darik Gamble baf73d684f behave more like psql from the command line 2015-01-07 16:50:48 -05:00
Daniel Schwarz b8d20bf8ca escape column names if they equal keywords or contain special chars 2015-01-07 21:22:19 +01:00
Karl-Aksel Puulmann 40c582e4c7 Experiment running tests only once per environment. Old version runs tests through 16 times instead of 4 times in total.
Idea taken from https://github.com/eventlet/eventlet/blob/master/.travis.yml.
2015-01-07 22:15:57 +02:00
Karl-Aksel Puulmann d566ff3286 Remove the extra tox.ini 2015-01-07 21:55:27 +02:00
Karl-Aksel Puulmann f017caacae Fix syntaxerror with commands like \d+ 2015-01-07 21:36:55 +02:00
Amjith Ramanujam 803e460992 Remove pgerror dependency. 2015-01-07 09:15:45 -08:00
Amjith Ramanujam ed8779ad65 Releasing version 0.10.2 2015-01-07 09:02:36 -08:00
Amjith Ramanujam 09f7ac55d0 Make pygments capital-cases in setup.py 2015-01-07 09:02:00 -08:00
Amjith Ramanujam e61c3428d4 Merge pull request #60 from vegetableman/patch-1
Update for README.rst features
2015-01-07 08:16:36 -08:00
Amjith Ramanujam 50960c2a25 Merge pull request #61 from jmagnusson/master
README fix for #59
2015-01-07 08:02:41 -08:00
Alexander Kukushkin a07a427c99 Add support of \dn [PATTERN] command
This command is used in standard psql for listing of schemas
2015-01-07 11:38:54 +01:00
Jacob Magnusson 6b3d012f9d README fix for #59 2015-01-07 11:09:30 +01:00
Vignesh Anand 0bd588f4d0 Update for README.rst features
Listed pretty printing as one of features.
2015-01-07 15:27:46 +05:30
Amjith Ramanujam 8728a73194 Releasing version 0.10.1 2015-01-07 00:32:37 -08:00
Amjith Ramanujam 9ab1530e7e Update the list of contributors. 2015-01-07 00:32:12 -08:00
Amjith Ramanujam 1ef8202fb0 Merge pull request #55 from guewen/depends-on-click-3.2
click version must be >= 3.2
2015-01-07 00:15:30 -08:00
Amjith Ramanujam eed1931b3f Remove unassigned local var from logging. 2015-01-07 00:10:56 -08:00
Guewen Baconnier 2c57e43728 click version must be >= 3.2
Because it uses click.termui.secho() with the keyword argument 'err' that has
been added in click 3.2.

Fixes #54
2015-01-07 09:10:18 +01:00
Amjith Ramanujam 25425c72c8 Remove an unnecessary str casting. 2015-01-06 22:34:19 -08:00
Amjith Ramanujam 835a24252f Merge pull request #50 from snahor/patch-1
Fix #45
2015-01-06 22:29:40 -08:00
Amjith Ramanujam 3f78ce7d64 Merge pull request #49 from Walms/master
ISSUE #32 More graceful error management
2015-01-06 22:28:34 -08:00
Nick Hahner 9b78193bed made some of the sql prettier 2015-01-06 22:13:30 -08:00
Hans Roman 29a1451210 Fix #45
Check PEP 352. To put it simple, from 2.6 the message attribute is deprecated and removed in 3.x.
2015-01-07 00:51:09 -05:00
Amjith Ramanujam e4e9828640 Merge pull request #40 from macobo/master
Fix UnicodeDecodeError in python2
2015-01-06 21:21:41 -08:00
dwalmsley 0238697de6 ISSUE #32 More graceful error management
Catching specific errors from psycopg2 and using
    the pgerror prop instead of message to avoid app
    crashing.
2015-01-07 17:50:48 +13:00
Amjith Ramanujam 13b17b8141 Merge pull request #30 from svenstaro/patch-1
Add entry point
2015-01-06 20:11:43 -08:00
Amjith Ramanujam d437a12a03 Update setup.py with specific versions for dependencies. 2015-01-06 19:44:57 -08:00
Amjith Ramanujam 8595284dcd Merge pull request #44 from cwa-/patch-1
fix type in README
2015-01-06 17:16:51 -08:00
Charlie Arnold d7e02a9a90 fix type in README 2015-01-06 17:15:45 -08:00
darikg 2975184384 Merge branch 'master' of https://github.com/amjith/pgcli 2015-01-06 18:42:04 -05:00
Karl-Aksel Puulmann 4aaa117cdd Force psycopg to decode strings received from database to unicode.
Unicode data caused queries to output nothing and exit with an
UnicodeDecodeError.
2015-01-07 00:58:28 +02:00
Karl-Aksel Puulmann f3f8c92d75 Show proper information about exceptions in logs and when running pgcli. 2015-01-07 00:58:28 +02:00
Amjith Ramanujam 855c697715 Merge pull request #41 from macobo/karl-fix-psycopg2-version
Pin down minimum psycopg2 version
2015-01-06 14:20:19 -08:00
Amjith Ramanujam fcb4b4402b Merge pull request #34 from EricWorkman/m/fix_special_d
Fix \d [pattern] to not fail with (global name 'true' is not defined)
2015-01-06 14:19:16 -08:00
Karl-Aksel Puulmann 1da648c450 Fix psycopg2 version 2015-01-07 00:03:33 +02:00
Eric Workman 6f85e16606 Fix \d [pattern] to not fail with (global name 'true' is not defined) 2015-01-06 15:47:53 -05:00