linux-traipu team mailing list archive
-
linux-traipu team
-
Mailing list archive
-
Message #09222
[Bug 1012288] Re: drizzledump dies with dashes in table names
looks like a good fix
** Changed in: drizzle
Assignee: (unassigned) => Stewart Smith (stewart)
** Changed in: drizzle
Status: New => Fix Committed
** Changed in: drizzle
Milestone: None => 7.2.5
** Changed in: drizzle
Importance: Undecided => Medium
--
You received this bug notification because you are a member of UBUNTU -
AL - BR, which is subscribed to Drizzle.
https://bugs.launchpad.net/bugs/1012288
Title:
drizzledump dies with dashes in table names
Status in A Lightweight SQL Database for Cloud Infrastructure and Web Applications:
Fix Committed
Bug description:
When running drizzledump on a database with dashes in some of the
tablenames it dies with.
-- Retrieving indexes for my-db-table...
Error executing query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-db-table' at line 1
This simple patch should do the trick
--- client/drizzledump_mysql.cc
+++ client/drizzledump_mysql.cc
@@ -269,8 +269,9 @@
if (verbose)
std::cerr << _("-- Retrieving indexes for ") << tableName << "..." << std::endl;
- query="SHOW INDEXES FROM ";
+ query="SHOW INDEXES FROM `";
query.append(tableName);
+ query.append("`");
To manage notifications about this bug go to:
https://bugs.launchpad.net/drizzle/+bug/1012288/+subscriptions
References