mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-17 17:32:15 +09:00
Issue 483: 'Invalid query' problem when use resource.updateItem(Package)DownloadedCount
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9642 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
9f9c6dd9be
commit
bddb968dbf
5 changed files with 59 additions and 16 deletions
|
|
@ -19,8 +19,12 @@
|
|||
$this->name = $dbParser->parseColumnName($this->name);
|
||||
if($column->attrs->var)
|
||||
$this->argument = new QueryArgument($column);
|
||||
else
|
||||
$this->default_value = $dbParser->parseColumnName($column->attrs->default);
|
||||
else {
|
||||
$default_value = new DefaultValue($this->name, $column->attrs->default);
|
||||
if($default_value->isOperation())
|
||||
$this->argument = new QueryArgument($column);
|
||||
else $this->default_value = $dbParser->parseColumnName($column->attrs->default);
|
||||
}
|
||||
}
|
||||
|
||||
function getExpressionString(){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue