This website works better with JavaScript
Inicio
Explorar
Axuda
Iniciar sesión
pascal
/
freepascal.compiler
réplica de
https://gitlab.com/freepascal.org/fpc/source.git
Seguir
2
Destacar
0
Fork
0
Ficheiros
Incidencias
0
Wiki
Explorar o código
* Do not return empty fieldlist when generating SQL
Michaël Van Canneyt
hai 2 meses
pai
ec8887baf2
achega
f406c2400b
Modificáronse 1 ficheiros
con
2 adicións
e
0 borrados
Dividir vista
Mostrar estatísticas de Diff
2
0
packages/fcl-web/src/restbridge/sqldbrestschema.pp
+ 2
- 0
packages/fcl-web/src/restbridge/sqldbrestschema.pp
Ver ficheiro
@@ -1427,6 +1427,8 @@ begin
Res:=Res+Term;
end;
end;
+ if Res='' then
+ Res:='*';
Result:=Res;
end;