Merge branch 'master' of https://github.com/cooperl22/laravel-db2
This commit is contained in:
commit
1f777ab61f
@ -104,6 +104,13 @@ class DB2Grammar extends Grammar
|
||||
}
|
||||
|
||||
$components['columns'] = $this->compileOver($orderings, $columns);
|
||||
|
||||
// if there are bindings in the order, we need to move them to the select since we are moving the parameter
|
||||
// markers there with the OVER statement
|
||||
if(isset($query->getRawBindings()['order'])){
|
||||
$query->addBinding($query->getRawBindings()['order'], 'select');
|
||||
$query->setBindings([], 'order');
|
||||
}
|
||||
|
||||
unset($components['orders']);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user