summaryrefslogtreecommitdiff
path: root/hsqldb
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2012-07-03 20:00:06 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2012-07-03 20:20:56 +0200
commitbed3049c4c04a202ff288189d225ca6e5941d69b (patch)
tree3bf015232ef37fd1164a4393df11a746d942f76c /hsqldb
parentf2ac4ff6600a7d20a519e9ef9e6bcd8157288f63 (diff)
fdo#36824 hsqldb properly escape automatically built names
Change-Id: Id2c36fb24d1f7c8f8e9800c10226323594bb766e
Diffstat (limited to 'hsqldb')
-rw-r--r--hsqldb/makefile.mk3
-rw-r--r--hsqldb/patches/fdo36824.patch11
2 files changed, 13 insertions, 1 deletions
diff --git a/hsqldb/makefile.mk b/hsqldb/makefile.mk
index e5004622ca4d..3692403278fb 100644
--- a/hsqldb/makefile.mk
+++ b/hsqldb/makefile.mk
@@ -58,7 +58,8 @@ CONVERTFILES=build$/build.xml \
PATCH_FILES=patches$/i96823.patch \
patches$/i97032.patch \
patches$/i103528.patch \
- patches$/i104901.patch
+ patches$/i104901.patch \
+ patches$/fdo36824.patch
.IF "$(JAVANUMVER:s/.//)" >= "000100060000"
PATCH_FILES+= \
diff --git a/hsqldb/patches/fdo36824.patch b/hsqldb/patches/fdo36824.patch
new file mode 100644
index 000000000000..ad753e335bad
--- /dev/null
+++ b/hsqldb/patches/fdo36824.patch
@@ -0,0 +1,11 @@
+--- misc/hsqldb/src/org/hsqldb/Expression.java 2012-07-03 19:49:00.000000000 +0200
++++ misc/build/hsqldb/src/org/hsqldb/Expression.java 2012-07-03 19:39:00.000000000 +0200
+@@ -1552,7 +1552,7 @@
+ return columnQuoted;
+ }
+
+- return false;
++ return true;
+ }
+
+ /**