linux-traipu team mailing list archive
-
linux-traipu team
-
Mailing list archive
-
Message #00003
[Bug 786509] Re: String concatenation operator doesn't allow chaining
** Changed in: drizzle
Assignee: (unassigned) => Brian Aker (brianaker)
** Changed in: drizzle
Importance: Undecided => Medium
** Changed in: drizzle
Status: New => Fix Committed
** Branch linked: lp:~brianaker/drizzle/bug786515-elliot
--
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)).