From e96a894bb85b72253a2a1e69e36f4f6e89713078 Mon Sep 17 00:00:00 2001 From: intrigeri Date: Sat, 22 Feb 2014 13:34:06 +0000 Subject: mysql: fix non-qualified table name extraction (Closes: Redmine#4373). --- handlers/mysql.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'handlers') diff --git a/handlers/mysql.in b/handlers/mysql.in index 9472b8e..ceed620 100644 --- a/handlers/mysql.in +++ b/handlers/mysql.in @@ -276,7 +276,7 @@ then DUMP_STRUCT="$DUMP_BASE --no-data $db" for qualified_table in $nodata do - table=$( expr match "$qualified_table" "$db\.\([^\w]*\)" ) + table=$( expr match "$qualified_table" "$db\.\(.\+\)" ) DUMP_STRUCT="$DUMP_STRUCT $table" done DUMP="( $DUMP; $DUMP_STRUCT )" -- cgit v1.2.3