summaryrefslogtreecommitdiffstats
path: root/TODO
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2015-01-26 23:26:07 -0800
committerAmjith Ramanujam <amjith.r@gmail.com>2015-01-26 23:26:07 -0800
commitb9e692e89f0106d1936525516737414e2c681d36 (patch)
treed5f237e95c239e045c5ae858a4760d212ccd0068 /TODO
parentc2d539df8aaba9bc15031cb9234f401694e0d5ee (diff)
Update TODO and changelog.
Diffstat (limited to 'TODO')
-rw-r--r--TODO15
1 files changed, 6 insertions, 9 deletions
diff --git a/TODO b/TODO
index af633995..de680090 100644
--- a/TODO
+++ b/TODO
@@ -1,19 +1,16 @@
# vi: ft=vimwiki
-* [ ] Add a page to keep track of changelog in pgcli.com
* [ ] Add coverage.
* [ ] Refactor to sqlcompletion to consume the text from left to right and use a state machine to suggest cols or tables instead of relying on hacks.
-* [ ] ON keyword should suggest aliases. This is something we don't currently support since a collection of aliases is not maintained.
* [ ] Refactor to sqlcompletion to consume the text from left to right and use a state machine to suggest cols or tables instead of relying on hacks.
* [ ] Add a few more special commands. (\l pattern, \dp, \ds, \dy, \z etc)
* [ ] Refactor pgspecial.py to a class.
-* [X] Write a doc about how to add new pgspecial commands.(psql -E)
* [ ] Show/hide docs for a statement using a keybinding.
* [ ] Check how to add the name of the table before printing the table.
* [ ] Add a new trigger for M-/ that does naive completion.
* [ ] New Feature List - Write the current version to config file. At launch if the version has changed, display the changelog between the two versions.
-* [X] Add JOIN to the list of keywords and provide proper autocompletion for it.
-* [X] Extract tables should also look for table names after the JOIN keyword.
- - SELECT * FROM some_very_long_table_name s JOIN another_fairly_long_name a ON s.id = a.num;
-* [X] Test if the aliases are identified correctly if the AS keyword is used
- - SELECT * FROM my_table AS m WHERE m.a > 5;
-* [X] Add logging.
+* [ ] need_search_path_refresh doesn't need to split the document.text, cur.query returns the current sql.
+* [ ] See if the need_search_path_refresh can be done outside the loop.
+* [ ] Add a test for 'select * from custom.abc where custom.abc.' should suggest columns from abc.
+* [ ] Search for Dataframe in the source and replace them.
+* [ ] pgexecute columns(), tables() etc can be just cursors instead of fetchall()
+* [ ] Add unicode tests.