This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
pascal
/
freepascal.compiler
espejo de
https://gitlab.com/freepascal.org/fpc/source.git
Seguir
2
Destacar
0
Fork
0
Archivos
Incidencias
0
Wiki
Explorar el Código
* Do not return empty fieldlist when generating SQL
Michaël Van Canneyt
hace 2 meses
padre
ec8887baf2
commit
f406c2400b
Se han
modificado 1 ficheros
con
2 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
2
0
packages/fcl-web/src/restbridge/sqldbrestschema.pp
+ 2
- 0
packages/fcl-web/src/restbridge/sqldbrestschema.pp
Ver fichero
@@ -1427,6 +1427,8 @@ begin
Res:=Res+Term;
end;
end;
+ if Res='' then
+ Res:='*';
Result:=Res;
end;