Eugen Konkov
Eugen Konkov
Ok. I will provide it. Would be cool if @jjn1056 provide more description on underlaid problem about why we can not clone current `$schema`
I do not wait tests, just patch local copy of code and use it. I do not write tests for patched code because I do not know: is this behavior...
I will not be able to add tests in the foreseeable future. sorry.
Hi, @mohawk2. I found the way to reproduce this easily: ```diff t/lib/Local/Schema/Result/ArtistCd.pm @@ -1,7 +1,7 @@ package Local::Schema::Result::ArtistCd; use base qw/DBIx::Class::Core/; -__PACKAGE__->table('artist_cd'); +__PACKAGE__->table('artist_cd_not_match'); __PACKAGE__->add_columns( artist_fk => { data_type => 'integer',...
A bit of debug information. From the below we can see that `_schema_from_database` returns `ArtistCdNotMatch` class instead of defined ResultSet `ArtistCd`. Also I noticed that there is no `ViewTest`, which...
@jjn1056 Thank you. You do not need access to any repo. Everything required to reproduce the issue is inside this PR. ### Let me provide more context on the problem....
What is your discord and TZ? Let's find a better time for a live chat.
@jjn1056 Have you managed to reproduce the issue?
Furthermore `sync()` does not work if component was initialized like ``` new Autocomplete('#tszz',{ valueField: 'id', labelField: 'name', ... ``` This happens because `const settings = get_settings ? getSettings(self.input, { delimiter:...
Ok. `user_settings` are honored only on line 117: ``` const settings = getSettings( input, user_settings ); ``` and are ignored here: ``` const settings = get_settings ? getSettings( self.input, {delimiter:self.settings.delimiter}...