Revert ViewInfo generic bound

This commit is contained in:
westito 2021-12-02 20:24:34 +01:00
parent d22bbcbadf
commit fb08707872
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ part of '../query_builder.dart';
///
/// [sqlite-docs]: https://www.sqlite.org/lang_createview.html
/// [sql-tut]: https://www.sqlitetutorial.net/sqlite-create-view/
abstract class ViewInfo<Self extends View, Row>
abstract class ViewInfo<Self extends HasResultSet, Row>
implements ResultSetImplementation<Self, Row> {
@override
String get entityName;