aboutsummaryrefslogtreecommitdiffstats
path: root/src/test
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2014-12-03 03:23:51 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2014-12-03 03:23:51 +0000
commite6e0208c973f6a67e8d4593aa665133a6d7e7f03 (patch)
tree0fee89be03d985438bb487d62cdbdcdf8d32faa4 /src/test
parent2e461c270a6a51603f095ed33d12dcf6ee6558b1 (diff)
downloadjackcess-e6e0208c973f6a67e8d4593aa665133a6d7e7f03.tar.gz
jackcess-e6e0208c973f6a67e8d4593aa665133a6d7e7f03.zip
Don't double quote already quoted identifiers. fixes patch 18
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@901 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/test')
-rw-r--r--src/test/java/com/healthmarketscience/jackcess/query/QueryTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/com/healthmarketscience/jackcess/query/QueryTest.java b/src/test/java/com/healthmarketscience/jackcess/query/QueryTest.java
index ade3ec1..65741cc 100644
--- a/src/test/java/com/healthmarketscience/jackcess/query/QueryTest.java
+++ b/src/test/java/com/healthmarketscience/jackcess/query/QueryTest.java
@@ -224,7 +224,7 @@ public class QueryTest extends TestCase
"UpdateQuery",multiline(
"PARAMETERS User Name Text;",
"UPDATE Table1",
- "SET Table1.col1 = \"foo\", Table1.col2 = [Table2].[col3], [[Table2]].[[col1]] = [User Name]",
+ "SET Table1.col1 = \"foo\", Table1.col2 = [Table2].[col3], [Table2].[col1] = [User Name]",
"WHERE ((([Table2].[col1]) Is Not Null));"));
expectedQueries.put(
"MakeTableQuery",multiline(