mirror of https://github.com/AMT-Cheif/drift.git
Support primaryKey override with inheritance (#467)
This commit is contained in:
parent
eac461486e
commit
c692c56d43
|
@ -74,7 +74,8 @@ class TableParser {
|
|||
|
||||
Future<Set<MoorColumn>> _readPrimaryKey(
|
||||
ClassElement element, List<MoorColumn> columns) async {
|
||||
final primaryKeyGetter = element.getGetter('primaryKey');
|
||||
final primaryKeyGetter =
|
||||
element.lookUpGetter('primaryKey', element.library);
|
||||
if (primaryKeyGetter == null) {
|
||||
return null;
|
||||
}
|
||||
|
|
|
@ -58,7 +58,10 @@ void main() {
|
|||
|
||||
class Socks extends Table {
|
||||
TextColumn get name => text()();
|
||||
IntColumn get id => integer().autoIncrement()();
|
||||
IntColumn get id => integer()();
|
||||
|
||||
@override
|
||||
Set<Column> get primaryKey => {id};
|
||||
}
|
||||
|
||||
class ArchivedSocks extends Socks {
|
||||
|
@ -209,6 +212,7 @@ void main() {
|
|||
expect(archivedSocks.columns, hasLength(4));
|
||||
expect(archivedSocks.columns.map((c) => c.name.name),
|
||||
['name', 'id', 'archived_by', 'archived_on']);
|
||||
expect(archivedSocks.primaryKey.map((e) => e.name.name), ['id']);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue