Evgeny Kalashnikov

Results 9 comments of Evgeny Kalashnikov

Here is the fixed version of p_get_tree that returns the proper breadcrumbs: Notice, that i added "GROUP_CONCAT( crumbs.`ancestor_id` ORDER BY path_length DESC SEPARATOR ',' ) AS breadcrumbs" Without the ORDER...

it will not work, because MySQL cannot update same table rows in a trigger, it can only update that specific row that is being updated, but the other rows in...

I am busy with a project right now for which I built this for, but I will think about it. It took me 23 days full time to solve this....

Yes, this would be amazingly useful for me as well, I am even considering to switch from Ace editor, if this feature can be implemented in Monaco.

Actually, I just realized that the mistake is with the parser, it should be able to parse USING (Column) but it fails, because I was building using the Builder and...

For sample query : SELECT `activity_log`.`ActivityId`,`activity_log`.`PageId`,`activity_log`.`Action`,`activity_log`.`Location`,`activity_log`.`Ip`,`activity_log`.`OccuredTimeStamp` FROM `activity_log` JOIN `pages` USING (`PageId`) Parser gives error: cannot calculate position of within `activity_log` JOIN `pages` USING (`PageId`) and then it cannot parse...

Ok I found the parser mistake and made a fix: in File /processors/FromProcessor.php UPDATE: i use another solution now, see below comment `protected function processFromExpression(&$parseInfo) { $res = array(); //...

Another solution that i am using now to keep the rest of parser intact is not to trim, but change the `if ($parseInfo['ref_type'] === 'USING') { // unparsed has only...

That would slow down the performance of the rendering for big objects, since we would have to parse strings to find the links. Why do you need this? What is...