This is a consequence of fixing Issue 7958. We are not recognizing the "from" clause in "select *, max( from table1" anymore because "from" can be part of a function call, as in "substring(<field> from 1 for 3)". To autocomplete on "max", user will have to add a close bracket first:
select * from max(^) from table1
Fixed Issue 7958 for only selected special functions, so this regression should now be removed.
Fixed Issue 7958 for only selected special functions, so this regression should now be removed.
Issue #8657 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
No fixed build |
No time estimate |
This is a consequence of fixing Issue 7958. We are not recognizing the "from" clause in "select *, max( from table1" anymore because "from" can be part of a function call, as in "substring(<field> from 1 for 3)". To autocomplete on "max", user will have to add a close bracket first:
select * from max(^) from table1