Skip to content

Commit

Permalink
Fixed bug CORE-1724 : Common table expressions cannot be used in comp…
Browse files Browse the repository at this point in the history
…uted columns and quantified predicates (IN / ANY / ALL)
  • Loading branch information
hvlad committed Feb 7, 2008
1 parent 736feae commit b028c90
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/dsql/ddl.cpp
Expand Up @@ -894,6 +894,9 @@ static bool is_array_or_blob(dsql_req* request, const dsql_nod* node)
case nod_trim:
return is_array_or_blob(request, node->nod_arg[e_trim_value]);

case nod_derived_field:
return is_array_or_blob(request, node->nod_arg[e_derived_field_value]);

default:
fb_assert(false);
return false;
Expand Down

0 comments on commit b028c90

Please sign in to comment.