antoniop
committed
on 11 Nov 16
Bugfix: when creating a paginator, queries containing $ variables cannot be passed by name and resolved by the
internal paginator machinery,… Show more
Bugfix: when creating a paginator, queries containing $ variables cannot be passed by name and resolved by the

internal paginator machinery, because those vars won't be available in the expected evaluation scope when calling db_map.

Probably db_map could be made more clever about this, but as a simple solution for this case I have just made so the

pagination query is computed in the caller level and passed to the paginator directly.

Show less

/cadmin/site-wide-status-change.xql (+1 -1)
1 1 <?xml version="1.0"?>
2 2 <queryset>
3 3
4 4 <fullquery name="toggle_site_wide_status">     
5 5       <querytext>
6 6      
7 7     update category_trees
8       set site_wide_p = case when :action = '1' then 't' else 'f' end
  8     set site_wide_p = (:action = '1')
9 9     where tree_id  = :tree_id
10 10
11 11       </querytext>
12 12 </fullquery>
13 13
14 14  
15 15 </queryset>