Vincent Milum Jr
Vincent Milum Jr
clike: [text]%[text] alike: %[text]%[text]% lclike: %[text]%[text] rclike: [text]%[text]% rawlike: any input passed unfiltered there really isn't an elegant way to have underscore single-character matching, so adding rawlike to handle those...
https://github.com/darkain/pudl/blob/9aff97a205fbb389a21520c254d1074393b84663/traits/pudlRedis.php#L85 This should probably be pconnect instead of connect.
$db->tables(['list','of','tables']) should return a special pudlTables class instance that has a reference to the parent pudl object, and contains a number of methods dedicated to table operations. "optimize table" "analyze...
1) https://github.com/darkain/pudl/blob/main/pudlOrm.php#L404 - remove this entire method (move into Altaform ORM) 1a) https://github.com/darkain/pudl/blob/main/pudlOrm.php#L413 - isn't this table definition format obsolete !? 2) https://github.com/darkain/pudl/blob/master/test/all.php#L3 - this info has not been valid...
This is the default in PHP 8.1, but we should be doing this anyways https://github.com/php/php-src/blob/php-8.1.0beta2/UPGRADING#L101
Add support for read/write splitting, once the execution unit is split from the query generator. depends on: https://github.com/darkain/pudl/issues/8
Decouple the PUDL query generator from the PUDL execution unit. This task will not be done for quite some time, this is a post 3.0 task. PDO, ODBC, and the...
1) all internal protected/private API calls should be prefixed with _ (underscore) 2) move non-categorical internal API calls to pudlInternal trait 3) document all internal APIs for future expansion, such...
collection, but instead of key=>value, it is key=>[array,of,values], where the array is a K/V of every column in the return list, and the parent key is a designated value from...
we need two variants 1) CREATE TABLE SQL syntax returned as a string directly from database 2) similar to DESC syntax that is returned in a PUDL native format that...