Simon Binder

Results 746 comments of Simon Binder

Thanks for the report! Can you try running the build [with performance tracking](https://github.com/dart-lang/build/blob/master/docs/measuring_performance.md) enabled and perhaps share those graphs? A quick workaround may be to restrict the sources on which...

Thanks for the follow-up! Unfortunately it will be kind of hard to track this down without a way to reproduce this. Can you share parts of the database structure with...

I agree that it would be nice to allow `IF NOT EXISTS` for index definitions too. I wonder if that option should really be set on the index though, since...

Your example isn't self-contained, so I've used this modified version ```dart import 'package:drift/drift.dart'; import 'package:drift/native.dart'; part 'repro.g.dart'; class DynamicRelations extends Table { IntColumn get id => integer()(); @ReferenceName('source') IntColumn get...

Oh right, good point! I think we disabled references for columns with type converters because there were some issues even if both columns were using the same converter. cc @dickermoshe...

Works for me as well. @AlexandreAndrade00, can you try to reproduce this with a self-contained example that we could look at?

This appears to be similar to https://github.com/simolus3/drift/issues/3168 and https://github.com/simolus3/drift/issues/3163. Basically, it looks like your code has been generated by `drift_dev` version `2.20.0` but is running against `drift` version `2.19.x`. I...

> 1 - I can not have the word "Menus" in the name of a Table (I had the case with 2 tables having this word in their name) This...

So you only get the "is not understood by drift" warning now? Is there anything you're doing differently to me here? I can't reproduce the issue with this file: ```dart...

> Would it be feasible to add a method `Set primaryKeyColumns()` to `DataClass`? I try to be cautious around generating more code, drift is already generating lots of code and...