mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Renamed Record class to DBRecord
This commit is contained in:
parent
04276e9522
commit
db1e3d1b62
305 changed files with 1902 additions and 1959 deletions
|
@ -116,7 +116,7 @@ public class RepositoryFileSystemTest extends AbstractGhidraHeadedIntegrationTes
|
|||
|
||||
// Add record
|
||||
long txId = dbh.startTransaction();
|
||||
Record rec = schema.createRecord(i);
|
||||
DBRecord rec = schema.createRecord(i);
|
||||
rec.setIntValue(0, i);
|
||||
testTable.putRecord(rec);
|
||||
Msg.debug(this, "Added record to test table, key=" + i);
|
||||
|
@ -216,7 +216,7 @@ public class RepositoryFileSystemTest extends AbstractGhidraHeadedIntegrationTes
|
|||
try {
|
||||
Table testTable = dbh.getTable("test");
|
||||
assertEquals(1, testTable.getRecordCount());
|
||||
Record rec = testTable.getRecord(2);
|
||||
DBRecord rec = testTable.getRecord(2);
|
||||
assertNotNull(rec);
|
||||
assertEquals(2, rec.getIntValue(0));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue