Actions
Bug #16687
closedOn PostgreSQL tables should be created with "WITHOUT OIDS"
Status:
Closed
Priority:
Should have
Assignee:
Category:
Database API (Doctrine DBAL)
Target version:
-
Start date:
2006-11-03
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
TYPO3 doesn't use DB level OIDS, so we don't need them.
(issue imported from #M4462)
Updated by Martin Kutschker over 17 years ago
ADOdb let's you define DB specific hints when you create a table with the ADOdb API. Maybe DBAL allows those hints to be used in its configurations. So in this case the OIDs can be enabled/disabled on a per table configuration.
Of course this is very advanced and maybe it's easier for the knowing admin to alter or recreate the table when there is a demand for it.
Updated by Karsten Dambekalns over 17 years ago
When creating tables through the install tool on PostgreSQL 8.2.4 the tables have no OIDs even without specifying this explicitly, at least on my system.
I added WITHOUT OIDS to all table creation statements when using PostgreSQL anyway, just to make sure.
Fixed in SVN.
Actions