Vladimir Mihailenco

Results 74 issues of Vladimir Mihailenco

``` Loading... inferring types... panic: runtime error: invalid memory address or nil pointer dereference [signal 0xb code=0x1 addr=0x28 pc=0x4db8ee] goroutine 1 [running]: github.com/randall77/heapdump14/read.dwarfTypeMap(0xc208060000, 0xc208032c00, 0xc208032c00) /home/vmihailenco/workspace/gocode/src/github.com/randall77/heapdump14/read/parser.go:1222 +0xc6e github.com/randall77/heapdump14/read.typePropagate(0xc208060000, 0x7fffa7d7a11e, 0x1d)...

django-any can not properly populate models with recursion. For example such models causes infinity recursion: ``` class Question(models.Model): accepted_answer = models.ForeignKey('Answer') class Answer(models.Model): question = models.ForeignKey(Question) ```

Currently I have to write following code to generate model: ``` any_model(Comment, content_type=ContentType.objects.get_for_model(Question), object_id=question.id, content_object=question) ``` but I believe it should be: ``` any_model(Comment, content_object=question) ``` It looks that it...

field_choices_attibute is written in following way that model_choice_field_data will be never called using any_form(FormClass), because ModelChoiceField.choices by default is: ``` [('', '----------------')] ``` So field_choices_attibute will return ''. It is...

AFAIK there are multiple issues here: 1. exporter is disconnected on *marshaling* errors which may hurt performance and cause data loss 2. [protobuf](https://github.com/golang/protobuf/issues/1228) rejects strings with invalid UTF-8 3. OpenTelemetry...

bug
help wanted
blocked:specification
pkg:attribute

First, we should provide some unified way to inspect current database schema via using `INFORMATION_SCHEMA.TABLES` or something similar. Then we can sync the database by comparing the actual database schema...

enhancement
help wanted

I have some spare time to work on improving docs and/or writing tutorials for Bun/PostgreSQL/MySQL. So please leave your feedback regarding docs here or suggest ideas for tutorials or share...

https://docs.microsoft.com/en-us/sql/t-sql/statements/merge-transact-sql?view=sql-server-ver15 First, we should allow to build `MERGE` queries with Bun's query builder: ```go db.NewMerge().Using(...).On(...).When(...) ``` Optionally we can also provide a common wrapper for all 4 databases that allows...

enhancement
help wanted