Skip to content

Commit

Permalink
0002163: Configured extension with a node group id of ALL is not working
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Jan 27, 2015
1 parent 65c9d12 commit a053743
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -31,7 +31,7 @@ public ExtensionServiceSqlMap(IDatabasePlatform platform, Map<String, String> re

putSql("selectEnabled", "select extension_id, extension_type, interface_name, node_group_id, enabled, extension_order, " +
"extension_text, create_time, last_update_by, last_update_time from $(extension) " +
"where enabled = 1 and node_group_id = ? order by extension_order");
"where enabled = 1 and (node_group_id = ? or node_group_id='ALL') order by extension_order");

putSql("selectAll", "select extension_id, extension_type, interface_name, node_group_id, enabled, extension_order, " +
"extension_text, create_time, last_update_by, last_update_time from $(extension)");
Expand Down

0 comments on commit a053743

Please sign in to comment.