well anyway ... i'm having a working saturday tomorow, so just decide what form do you want and i'll go trough the source tomorow and fix the lot of it.
l8r
Leons Petrazickis wrote:
Personally, I'd rather stay away from any regex-based SQL compatibility shims. I think they introduce tight-coupling to the system, and are by nature fragile.
Handling bitwise operation in a generic way is quite doable. The Database API already has similar abstraction for other things. I'll be happy to check in the addition to the Database class tomorrow June 13th.
Any more votes for which stylistic approach is preferable?
- Add a function to the Database API for each bit operator.
$sql = $database->bitand('log_deleted', 1); $sql = $database->bitor('log_deleted', 1); $sql = $database->bitxor('log_deleted', 1);
- Add a function to the Database API to handle all the operators.
$sql = $database->op('&', 'log_deleted', 1); $sql = $database->op('|', 'log_deleted', 1); $sql = $database->op('^', 'log_deleted', 1); or $sql = $database->op(Database::BITAND, 'log_deleted', 1); $sql = $database->op(Database::BITOR, 'log_deleted', 1); $sql = $database->op(Database::BITXOR, 'log_deleted', 1);
So far we've had one vote for option 1 and two votes for option 2.
Regards,
Leons Petrazickis
On Fri, Jun 12, 2009 at 14:22, Freako F. Freakolowskyfreak@drajv.si wrote:
but on the other hand ... if you would just make sure that the bitwise comparison operation would always be in the "key" part of the array makeList solution would work ...
Freako F. Freakolowsky wrote:
I never said my solution was unbreakable, didn't even say it's good ... far from it ... I just said that the solution can be implemented there, but after your Sam&Max example i'm starting to doubt my way would work.
So on that note i'm for what's behind door number 3 ... the second version
$sql = $database->op(Database::BITAND, 'log_deleted', 1);
Aryeh Gregor wrote:
On Fri, Jun 12, 2009 at 10:02 AM, Leons Petrazickisleons.petrazickis@gmail.com wrote:
- Refactor the database to not use an integer as a bit field. Just
use four different boolean columns, which works well cross-database.
In MySQL, four different boolean columns means four times the storage, as compared to one TINYINT used as a bitfield. So this isn't a good solution.
- Add a function to the Database API for each bit operator.
$sql = $database->bitand('log_deleted', 1);
- Add a function to the Database API to handle all the operators.
$sql = $database->op('&', 'log_deleted', 1); or $sql = $database->op(Database::BITAND, 'log_deleted', 1);
These would be the way to do it, I guess. We do something similar for things like conditionals already. I think 2 is preferable to 3, stylistically.
On Fri, Jun 12, 2009 at 11:06 AM, Freako F.
Freakolowskyfreak@drajv.si wrote:
Oracle abstraction solves this problem in makeList function ... the only weak point for this solution is if you write SQL statements manualy, if you use Database class functions to create the actual SQL statement this works and as i was told on #mediawiki manual sql creation should gradually be rooted out.
This isn't a good solution:
foreach ($a as $key => $value) { if (strpos($key, ' & ') !== FALSE) $a2[preg_replace('/(.*)\s&\s(.*)/', 'BITAND($1, $2)',
$key)] = $value; elseif (strpos($key, ' | ') !== FALSE) $a2[preg_replace('/(.*)\s|\s(.*)/', 'BITOR($1, $2)', $key)] = $value; elseif (!is_array($value)) { if (strpos($value, ' = ') !== FALSE) { if (strpos($value, ' & ') !== FALSE) $a2[$key] = preg_replace('/(.*)\s&\s(.*?)\s=\s(.*)/', 'BITAND($1, $2) = $3', $value); elseif (strpos($value, ' | ') !== FALSE) $a2[$key] = preg_replace('/(.*)\s|\s(.*?)\s=\s(.*)/', 'BITOR($1, $2) = $3', $value); else $a2[$key] = $value; } elseif (strpos($value, ' & ') !== FALSE) $a2[$key] = preg_replace('/(.*)\s&\s(.*)/', 'BITAND($1, $2)', $value); elseif (strpos($value, ' | ') !== FALSE) $a2[$key] = preg_replace('/(.*)\s|\s(.*)/', 'BITOR($1, $2)', $value); else $a2[$key] = $value; }
It breaks on all sorts of possible input, like $dbr->select( 'revision', '*', 'rev_deleted&1' ) or $dbr->update( 'user', array( 'user_name' => 'Sam & Max'), $where ), or any number of other things. Not actually tested, but it definitely breaks *somewhere*.
Wikitech-l mailing list Wikitech-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikitech-l
Wikitech-l mailing list Wikitech-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikitech-l
Wikitech-l mailing list Wikitech-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikitech-l
Wikitech-l mailing list Wikitech-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikitech-l