← Back to team overview

linux-traipu team mailing list archive

[Bug 786509] Re: String concatenation operator doesn't allow chaining

 

** Branch linked: lp:~brianaker/drizzle/bug786509-eliot

-- 
You received this bug notification because you are a member of UBUNTU -
BR - LINUX TRAIPU, which is subscribed to Drizzle.
https://bugs.launchpad.net/bugs/786509

Title:
  String concatenation operator doesn't allow chaining

Status in A Lightweight SQL Database for Cloud Infrastructure and Web Applications:
  Fix Committed

Bug description:
  In other DBMSs I can execute the following query and get "abc" as a result:
  select 'a' || 'b' || 'c'
  but in Drizzle I have to do
  select ('a' || 'b') || 'c'
  because the original query is reported as having incorrect syntax (error 1064 (42000)).