|
|
@ -95,6 +95,13 @@ select |
|
|
|
${dbtest_assertion.tid}, |
|
|
|
${dbtest_assertion.tid}, |
|
|
|
A.beginn, |
|
|
|
A.beginn, |
|
|
|
now(), |
|
|
|
now(), |
|
|
|
|
|
|
|
<#if dbtest_assertion.def_col_value=""> |
|
|
|
|
|
|
|
--Test wenn Zielspalte leer sein soll: |
|
|
|
|
|
|
|
case when T.${dbtest_assertion.def_col_name} is null or '' || T.${dbtest_assertion.def_col_name}='' |
|
|
|
|
|
|
|
then 0 |
|
|
|
|
|
|
|
else 1 end |
|
|
|
|
|
|
|
<#else> |
|
|
|
|
|
|
|
|
|
|
|
case when T.${dbtest_assertion.def_col_name}= |
|
|
|
case when T.${dbtest_assertion.def_col_name}= |
|
|
|
<#if dbtest_assertion.def_col_function !=""> |
|
|
|
<#if dbtest_assertion.def_col_function !=""> |
|
|
|
${dbtest_assertion.def_col_function}('${dbtest_assertion.def_col_value}') |
|
|
|
${dbtest_assertion.def_col_function}('${dbtest_assertion.def_col_value}') |
|
|
@ -102,7 +109,10 @@ ${dbtest_assertion.def_col_function}('${dbtest_assertion.def_col_value}') |
|
|
|
'${dbtest_assertion.def_col_value}' |
|
|
|
'${dbtest_assertion.def_col_value}' |
|
|
|
</#if> |
|
|
|
</#if> |
|
|
|
then 0 |
|
|
|
then 0 |
|
|
|
else 1 end as result_code, |
|
|
|
else 1 end |
|
|
|
|
|
|
|
</#if> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
as result_code, |
|
|
|
T.${dbtest_assertion.def_col_name} as result_value |
|
|
|
T.${dbtest_assertion.def_col_name} as result_value |
|
|
|
from tmp_anfang A left outer join tmp_rs T |
|
|
|
from tmp_anfang A left outer join tmp_rs T |
|
|
|
on (A.dbtest_id=${dbtest_assertion.dbtest_id} |
|
|
|
on (A.dbtest_id=${dbtest_assertion.dbtest_id} |
|
|
|