summaryrefslogtreecommitdiffstats
path: root/TODO
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith@newrelic.com>2014-12-31 23:17:50 -0800
committerAmjith Ramanujam <amjith@newrelic.com>2014-12-31 23:17:50 -0800
commit1cfdb4c55a4bebfe6536969acc2936131e7395c6 (patch)
treeea728300eb0ac2986271a7fcc4055303a50c01e6 /TODO
parent01792765fa3d1d2803ca4d0dfed48ed50f38adfc (diff)
Extract tables from JOIN statements.
Diffstat (limited to 'TODO')
-rw-r--r--TODO4
1 files changed, 2 insertions, 2 deletions
diff --git a/TODO b/TODO
index a1b3964f..af678173 100644
--- a/TODO
+++ b/TODO
@@ -2,9 +2,9 @@
* [o] Add JOIN to the list of keywords and provide proper autocompletion for it.
* [ ] Add a page to keep track of changelog in pgcli.com
* [ ] 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.
-* [ ] Extract tables should also look for table names after the JOIN keyword.
+* [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;
-* [ ] Test if the aliases are identified correctly if the AS keyword is used
+* [X] Test if the aliases are identified correctly if the AS keyword is used
- SELECT * FROM my_table AS m WHERE m.a > 5;
* [ ] ON keyword should suggest aliases. This is something we don't currently support since a collection of aliases is not maintained.
* [ ] Add a page to keep track of changelog in pgcli.com