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 /hsqldb/patches | |
parent | f2ac4ff6600a7d20a519e9ef9e6bcd8157288f63 (diff) |
fdo#36824 hsqldb properly escape automatically built names
Change-Id: Id2c36fb24d1f7c8f8e9800c10226323594bb766e
Diffstat (limited to 'hsqldb/patches')
-rw-r--r-- | hsqldb/patches/fdo36824.patch | 11 |
1 files changed, 11 insertions, 0 deletions
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; + } + + /** |