diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2012-07-03 20:00:06 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2012-07-03 20:20:56 +0200 |
commit | bed3049c4c04a202ff288189d225ca6e5941d69b (patch) | |
tree | 3bf015232ef37fd1164a4393df11a746d942f76c | |
parent | f2ac4ff6600a7d20a519e9ef9e6bcd8157288f63 (diff) |
fdo#36824 hsqldb properly escape automatically built names
Change-Id: Id2c36fb24d1f7c8f8e9800c10226323594bb766e
-rw-r--r-- | hsqldb/makefile.mk | 3 | ||||
-rw-r--r-- | hsqldb/patches/fdo36824.patch | 11 |
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; + } + + /** |