<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to 4916: (ok 4.5) Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables</title><link href="https://sourceforge.net/p/phpmyadmin/bugs/4916/" rel="alternate"/><link href="https://sourceforge.net/p/phpmyadmin/bugs/4916/feed.atom" rel="self"/><id>https://sourceforge.net/p/phpmyadmin/bugs/4916/</id><updated>2015-06-29T08:06:16.941000Z</updated><subtitle>Recent changes to 4916: (ok 4.5) Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables</subtitle><entry><title>#4916 (ok 4.5) Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables</title><link href="https://sourceforge.net/p/phpmyadmin/bugs/4916/?limit=25#7e43" rel="alternate"/><published>2015-06-29T08:06:16.941000Z</published><updated>2015-06-29T08:06:16.941000Z</updated><author><name>Madhura Jayaratne</name><uri>https://sourceforge.net/u/madhuracj/</uri></author><id>https://sourceforge.netaed2cdc11fda60eab94741e74cb74781d4f7af95</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;summary&lt;/strong&gt;: Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables --&amp;gt; (ok 4.5) Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;: open --&amp;gt; resolved&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</summary></entry><entry><title>#4916 Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables</title><link href="https://sourceforge.net/p/phpmyadmin/bugs/4916/?limit=25#5a63" rel="alternate"/><published>2015-06-27T00:57:57.190000Z</published><updated>2015-06-27T00:57:57.190000Z</updated><author><name>Madhura Jayaratne</name><uri>https://sourceforge.net/u/madhuracj/</uri></author><id>https://sourceforge.netb0f3baca4b4d99314c655c3f6a5c3252bf314eef</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Thanks Nisarg, I will update the library.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>#4916 Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables</title><link href="https://sourceforge.net/p/phpmyadmin/bugs/4916/?limit=25#446e" rel="alternate"/><published>2015-06-26T21:09:52.527000Z</published><updated>2015-06-26T21:09:52.527000Z</updated><author><name>Nisarg Jhaveri</name><uri>https://sourceforge.net/u/nisargjhaveri/</uri></author><id>https://sourceforge.net31ef87e53e6b3323088c0f09243322d89af5d176</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;CodeMirror version 5.4.0 is released. Probably we can update the library now.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>#4916 Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables</title><link href="https://sourceforge.net/p/phpmyadmin/bugs/4916/?limit=25#a6e1" rel="alternate"/><published>2015-05-22T02:05:23.262000Z</published><updated>2015-05-22T02:05:23.262000Z</updated><author><name>Madhura Jayaratne</name><uri>https://sourceforge.net/u/madhuracj/</uri></author><id>https://sourceforge.netf16100bb8c6a69cc54162643d0c5bce32b2a34c8</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Autocomplete functionality uses a third party library and I have sent them a pull request here with fixes &lt;a href="https://github.com/codemirror/CodeMirror/pull/3274" rel="nofollow"&gt;https://github.com/codemirror/CodeMirror/pull/3274&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>#4916 Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables</title><link href="https://sourceforge.net/p/phpmyadmin/bugs/4916/?limit=25#75a5" rel="alternate"/><published>2015-05-22T01:38:24.125000Z</published><updated>2015-05-22T01:38:24.125000Z</updated><author><name>Madhura Jayaratne</name><uri>https://sourceforge.net/u/madhuracj/</uri></author><id>https://sourceforge.net79fad7b2207e778c6963e8a1e4d049c442e9af43</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;assigned_to&lt;/strong&gt;: Madhura Jayaratne&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</summary></entry><entry><title>Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables</title><link href="https://sourceforge.net/p/phpmyadmin/bugs/4916/" rel="alternate"/><published>2015-05-21T11:56:06.056000Z</published><updated>2015-05-21T11:56:06.056000Z</updated><author><name>DrY</name><uri>https://sourceforge.net/u/ypanagis/</uri></author><id>https://sourceforge.netc5d4e77fbf6a8ed0465bb3fe41d582ef70a06f5b</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Suppose we have 3 tables table1, table2, table3&lt;/p&gt;
&lt;p&gt;Whenever I write query of the form:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;select t1.*, t2.field1, t3.* from
table1 as t1 inner join table2 as t2
on t1.id = t2.id -- 1st join condition
inner join table3 as t3
on t2.fk = t3.id -- 2nd join condition
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;then when I am in the process of typing the 2nd join condition, the autocomplete engine recognizes the list of t3 fields but when I select one of them it brings the full (unaliased) name of the table, i.e &lt;code&gt;table3&lt;/code&gt;. &lt;/p&gt;
&lt;p&gt;For the 1st condition, autocomplete simply doesn't work&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables</title><link href="https://sourceforge.net/p/phpmyadmin/bugs/4916/" rel="alternate"/><published>2015-05-21T11:56:06.056000Z</published><updated>2015-05-21T11:56:06.056000Z</updated><author><name>DrY</name><uri>https://sourceforge.net/u/ypanagis/</uri></author><id>https://sourceforge.net1d6c5642c242a439611377597e09ddf1ec5558b7</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Ticket 4916 has been modified: Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables&lt;br /&gt;
Edited By: Madhura Jayaratne (madhuracj)&lt;br /&gt;
Owner updated: None =&amp;gt; u'madhuracj'&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>(ok 4.5) Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables</title><link href="https://sourceforge.net/p/phpmyadmin/bugs/4916/" rel="alternate"/><published>2015-05-21T11:56:06.056000Z</published><updated>2015-05-21T11:56:06.056000Z</updated><author><name>DrY</name><uri>https://sourceforge.net/u/ypanagis/</uri></author><id>https://sourceforge.netc67436f1692dad3a12d6dbf3d5672c597c5e736c</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Ticket 4916 has been modified: (ok 4.5) Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables&lt;br /&gt;
Edited By: Madhura Jayaratne (madhuracj)&lt;br /&gt;
Summary updated: u"Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables" =&amp;gt; u"(ok 4.5) Autocomplete either doesn't function at all or auto completes the original table name when joining multiple aliased tables"&lt;br /&gt;
Status updated: u'open' =&amp;gt; u'resolved'&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>