* Do not return empty fieldlist when generating SQL

This commit is contained in:
Michaël Van Canneyt 2025-06-19 12:04:13 +02:00
parent ec8887baf2
commit f406c2400b

View File

@ -1427,6 +1427,8 @@ begin
Res:=Res+Term;
end;
end;
if Res='' then
Res:='*';
Result:=Res;
end;