Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilles-96 <raghuram.vadapalli@research.iiit.ac.in>2015-12-13 22:01:03 +0300
committerAchilles-96 <raghuram.vadapalli@research.iiit.ac.in>2015-12-13 22:01:09 +0300
commit4b8983028a5c1168a4c605070dc5431d086e7df8 (patch)
tree67ca6a45be8e8c33297eddd411a2bf2c198b8d80 /tbl_export.php
parentca32b9f51a73a7664962896641db13e1e7d7f583 (diff)
Fixes #11679
Signed-off-by: Raghuram Vadapalli <raghuram.vadapalli@research.iiit.ac.in>
Diffstat (limited to 'tbl_export.php')
-rw-r--r--tbl_export.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/tbl_export.php b/tbl_export.php
index 1f35e47605..a168c0a3c0 100644
--- a/tbl_export.php
+++ b/tbl_export.php
@@ -166,7 +166,10 @@ if (! empty($sql_query)) {
'value_str' => '.',
)
),
- array()
+ array(
+ new SqlParser\Token($table),
+ new SqlParser\Token('.',SqlParser\Token::TYPE_OPERATOR)
+ )
);
}
$sql_query = SqlParser\TokensList::build($tokens);