Project

General

Profile

Bug #14508

Updated by Carsten Rose almost 2 years ago

The output of _exec can't be passed down to fields below, even with AS '_exec|column' 

 {{column}} will return the command, not the output 
 {{&column}} will return empty, not the output 

 BTW: folgender Code verhaelt sich korrekt 

 <pre> 

 10.sql = SELECT 'echo "Hello World"' AS '_exec' 

 20.sql = SELECT '{{10.exec}}' 
 </pre>

Back