TvPlanIt: Relax postgres check in previous commit ('postgres' rather than 'postgresql')

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8933 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2023-10-04 20:42:19 +00:00
parent 23030c0377
commit cdda31aed5

View File

@ -132,7 +132,7 @@ begin
FIdFieldTypeNameInSQL := 'INTEGER NOT NULL PRIMARY KEY'; // This works for firebird v2.x and v3 when triggers & generators are provided
FBoolFieldTypenameInSQL := 'BOOLEAN';
end else
if pos('postgresql', protocol) > 0 then
if pos('postgres', protocol) > 0 then
FIdFieldTypeNameInSQL := 'SERIAL NOT NULL PRIMARY KEY'
else
if protocol = 'sqlite' then