linux-traipu team mailing list archive
-
linux-traipu team
-
Mailing list archive
-
Message #00179
[Bug 786509] Re: String concatenation operator doesn't allow chaining
** Changed in: drizzle
Status: Fix Committed => Fix Released
** Changed in: drizzle
Milestone: None => 2011-06-06
--
You received this bug notification because you are a member of UBUNTU -
AL, 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 Released
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)).