summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-04-26Merge pull request #686 from owst/column_completion_for_order_by_and_distinctIrina Truong
Suggest columns for `ORDER BY` and `DISTINCT` (fixes #685)
2017-04-26Suggest columns for `ORDER BY` and `DISTINCT` (fixes #685)Owen Stephens
Having typed an alias name in an `ORDER BY` or (`SELECT`) `DISTINCT` clause, the alias was not taken account of, and the completion simply listed all columns. This change fixes that, and makes the autocompletion behave the same as in `SELECT` and `WHERE` clauses.
2017-04-25Merge pull request #688 from lelit/slash_sfIrina Truong
Configure suggestions for \sf
2017-04-25Merge pull request #687 from dbcli/feature/behave_pager_wrapperIrina Truong
behave pager wrapper
2017-04-25Suggest functions for \\sfLele Gaifax
Move the specials suggestion map to a constant dictionary, to avoid repeating the key names.
2017-04-25Fix typo in commentLele Gaifax
2017-04-25behave pager wrapperDick Marinus
2017-04-21Merge pull request #667 from dbcli/koljonen/tests_parametrize_completerAmjith Ramanujam
Parametrize completer in tests + deduplicate test code
2017-04-21Merge pull request #654 from dbcli/koljonen/case_column_titlesAmjith Ramanujam
Casing of column headers (using casing file)
2017-04-21Merge branch 'master' into koljonen/case_column_titlesAmjith Ramanujam
2017-04-19Merge pull request #684 from dbcli/amjith/author-updateIrina Truong
Change author name and email.
2017-04-19Changed to pgcli-dev@googlegroups.com.Irina Truong
2017-04-19Seriously pep8radius.Irina Truong
2017-04-19Merge branch 'master' into amjith/author-updateIrina Truong
2017-04-19Merge pull request #660 from hraban/dockerIrina Truong
Docker
2017-04-19Add Hraban Luyat to AUTHORSHraban Luyat
2017-04-18Change author name and email.Amjith Ramanujam
2017-04-15README: Explain how to use with DockerHraban Luyat
2017-04-15DockerizeHraban Luyat
2017-04-13Merge pull request #683 from AlexTes/patch-2Amjith Ramanujam
Add AlexTes to AUTHORS
2017-04-13Add AlexTes to AUTHORSAlexander Tesfamichael
2017-04-12Merge pull request #681 from AlexTes/patch-1Amjith Ramanujam
Make it easier to find config option documentation
2017-04-12Make it easier to find config option documentationAlexander Tesfamichael
2017-04-08Merge pull request #680 from dbcli/j-bennet/pep8radius-travisAmjith Ramanujam
Ported pep8radius addition from mycli.
2017-04-07Ported pep8radius addition from mycli.Irina Truong
2017-04-07Merge pull request #679 from russelldavies/fix_cliIrina Truong
Standardize command line option names
2017-04-07Standardize command line option namesRussell Davies
This standardizes on the same names as psql and removes some conflicts.
2017-04-01Merge pull request #673 from dbcli/j-bennet/behave-tests-housekeepingIrina Truong
Functional tests housekeeping
2017-03-31Switched back to expect_exact in iocommands test.Irina Truong
2017-03-31switch from nano to exDick Marinus
2017-03-31Fix coverage tests, fix PGPASSWORDDick Marinus
- I've copied my changes in .travis.yml from mycli - Changed PGPASS to PGPASSWORD
2017-03-31Install nano.Irina Truong
2017-03-31Which nano?Irina Truong
2017-03-31After editor command, expect colored sql.Irina Truong
2017-03-31Renamed pgcli to dbcli and postgres to dbserver, to make .feature files ↵Irina Truong
reusable.
2017-03-31Added coverage support for functional tests.Irina Truong
2017-03-31Fixed failing test.Irina Truong
2017-03-31Housekeeping: separated test steps into different files.Irina Truong
2017-03-31Removed unnecessary 'pgcli installed' test step.Irina Truong
2017-03-30Merge pull request #678 from owst/configurable_continuation_charAmjith Ramanujam
Allow configurable multiline continuation char
2017-03-30Allow configurable multiline continuation charOwen Stephens
2017-03-21Merge pull request #676 from dbcli/j-bennet/bump-prompt-toolkit-for-fix-edit-bugAmjith Ramanujam
Bumped minimal requirement of prompt-toolkit to 1.0.10
2017-03-21Added fix to changelog.Irina Truong
2017-03-21Bumped minimal requirement of prompt-toolkit to 1.0.10, where ↵Irina Truong
reset_current_buffer was deprecated.
2017-03-20Merge pull request #670 from dbcli/j-bennet/fix-edit-bugIrina Truong
Attempt to fix #668 (not pretty).
2017-03-20Added comment.Irina Truong
2017-03-19Merge pull request #671 from dbcli/j-bennet/pr-templatesAmjith Ramanujam
PR and issue templates.
2017-03-19Trimmed down issue template.Irina Truong
2017-03-18PR and issue templates.Irina Truong
2017-03-18Casing for column headers (based on casing file)Joakim Koljonen
``` koljonen@localhost:koljonen> SELECT transferid, parenttransferid, amount from transfers ╒══════════════╤════════════════════╤══════════╕ │ TransferID │ ParentTransferID │ Amount │ ╞══════════════╪════════════════════╪══════════╡ ... ... ... ```