|
136 KB
@funfun: Instead of fixing this issue, can you specify what needs to be done so that all team members are aware of how to handle this correctly when a new DB is added.
>> @funfun: Instead of fixing this issue, can you specify what needs to be done so that all team members are aware of how to handle this correctly when a new DB is added.
It is explained in issue 11030 already:
"... Fix made by issue 6096 seems to add a 'public boolen isColumnNode()' API to the tree node, and, a DB column tree node supposes to redefine this method to return true. Since ADS column tree nodes do not share a common base column node class, hence, we need to modify each DB column tree node and add isColumnNode() manually. ..."
There are some other databases have this problem, not fixed yet. See issue 11030 for more info.
For VoltDB, simply add
@Override
public boolean isColumnNode() {
return true;
}
to VoltColumnNode.java should fix the problem. I don't have access to VoltDB, please email me a VoltDB server properties file if you want me to fix this issue.
>> @funfun: Instead of fixing this issue, can you specify what needs to be done so that all team members are aware of how to handle this correctly when a new DB is added.
It is explained in issue 11030 already:
"... Fix made by issue 6096 seems to add a 'public boolen isColumnNode()' API to the tree node, and, a DB column tree node supposes to redefine this method to return true. Since ADS column tree nodes do not share a common base column node class, hence, we need to modify each DB column tree node and add isColumnNode() manually. ..."
There are some other databases have this problem, not fixed yet. See issue 11030 for more info.
For VoltDB, simply add
@Override
public boolean isColumnNode() {
return true;
}
to VoltColumnNode.java should fix the problem. I don't have access to VoltDB, please email me a VoltDB server properties file if you want me to fix this issue.
node method added and drag and drop is now working.
node method added and drag and drop is now working.
Issue #11329 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
Fixed Build v15.0.0-dev-95 |
No time estimate |
1 issue link |
relates to #11030
Issue #11030Drag and Drop columns appends the datatype as well |
@funfun: Instead of fixing this issue, can you specify what needs to be done so that all team members are aware of how to handle this correctly when a new DB is added.