Backquote column names in group by clause
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
parent
cdceec1741
commit
de6e9b8f67
@ -509,7 +509,7 @@ function query_groupby()
|
||||
var str = "";
|
||||
for (i = 0; i < history_array.length;i++) {
|
||||
if (history_array[i].get_type() == "GroupBy") {
|
||||
str += history_array[i].get_column_name() + ", ";
|
||||
str += '`' + history_array[i].get_column_name() + "`, ";
|
||||
}
|
||||
}
|
||||
str = str.substr(0, str.length - 2);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user