| 377 | } |
| 378 | |
| 379 | void Database::ensureGuid(thread_db* tdbb) |
| 380 | { |
| 381 | if (readOnly()) |
| 382 | return; |
| 383 | |
| 384 | if (!dbb_guid.Data1) // It would be better to full check but one field should be enough |
| 385 | { |
| 386 | GenerateGuid(&dbb_guid); |
| 387 | PAG_set_db_guid(tdbb, dbb_guid); |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | FB_UINT64 Database::getReplSequence(thread_db* tdbb) |
| 392 | { |
no test coverage detected