Comment by hyperman1

5 days ago

The Jetbrains AI autocomplete is indeed a lot better than the old one, but I can't predict it, so I have to keep watching it.

E.g. a few days ago I wanted to verify if a rebuilt DB table matched the original. So we built a query with autocomplete

SELECT ... FROM newtable n JOIN oldtable o ON ... WHERE n.field1<> o.field1 OR

and now we start autocompleting field comparisons and it nicely keeps generating similar code.

Until: n.field11<> o.field10

Wait? Why 10 instead of 11?