Disable template auto population #37572
TB-HunBoka
started this conversation in
General
Replies: 1 comment
-
This behavior is a little inconsistent. On another database, nor table nor column name was auto completed, but schema did. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Can I somehow disable column and table auto population in templates?
Currently it auto populates the table with the very first table it could find and then auto populate the column name with the very first column name it could find in the selected table.
I would turn this function off as it's slower to replace the template. I like the order, so I would love to see that the template jumps to the table variable in a query like this:
select ${column},count(*)
from ${table}
group by ${column}
order by ${column} desc;
Then I can type in the table name first, and then the auto completer can help me to select column names from the selected table.
But turning off the ${table} auto replace, would be enough for me.
Beta Was this translation helpful? Give feedback.
All reactions