Arjay Angeles
Arjay Angeles
I adjusted the table alias to use the original table in `$query->from` to preserve the compatibility in selected columns. Can you please check again @mixaster. I will also add some...
Initial tests result vs 1.1k records: Before: ```sql select t2.* from ( select rownum AS "rn", t1.* from (select "ROLES".*, (select count(*) from "USERS" inner join "ROLE_USER" on "USERS"."ID" =...
Oic, we could trim down the query to a single inner select. Something like: ```sql select * from (select users.*, row_number() over (order by rowid) as rn from USERS) users...
Apologies, I accidentally tagged v11.6.1 on this branch. On the good side, this PR got tested and seemed to break https://github.com/yajra/laravel-oci8/issues/891.
That is the expected behavior, `filterColmn` is only applied to the selected column. Or do you mean, the search is not working at all except on `cpf_cnpj`? You can debug...
Does your connection have a prefix? I think this is the expected behavior. Maybe try creating a new connection without a prefix and use that instead. ```php DB::connection('no_prefix')->getSequence()->create('transaction_seq'); ```
Will be fixed in v12, thanks!
I am not using filament, I may not provide any docs. But for the implementation, you must cascade the dropdowns starting from region -> province -> city -> barangay. Select...
It seems like you are still using the old config. Try republishing and reseeding.
Everything looks correct except for multiple column fullText: ```php $table->fullText(['name', 'username', 'email'], 'users_fulltext_search'); ``` ### Error ```bash Error Code : 29851 Error Message : ORA-29851: cannot build a domain index...