+cinder (2:9.0.0~b2-2~u16.04+mos1) mos10.0; urgency=medium
+
+ * Add patch https://review.openstack.org/#/c/355837
+ * Patch must be deleted during next cinder package update if will be merged to
+ upstream source code!
+
+ -- Igor Yozhikov <iyozhikov@mirantis.com> Wed, 17 Aug 2016 13:00:08 +0300
+
cinder (2:9.0.0~b2-1~u16.04+mos1) mos10.0; urgency=medium
* Update to 9.0.0~b2
[Chuck Short]
* New upstream version.
- * debian/cinder.conf: Fix path for cinder-rootwrap. (LP: #1045438)
- * debian/control: Add python-glanceclient as a dep.
+ * debian/cinder.conf: Fix path for cinder-rootwrap. (LP: #1045438)
+ * debian/control: Add python-glanceclient as a dep.
* debian/cinder-common.postinst: Fix chmod thinko.
* debian/*.upstart: Specify the configuration files.
cinder (2012.2~f3-0ubuntu2) quantal; urgency=low
* debian/cinder.conf: Get rid of deprecated warnings.
- (LP: #1036240)
+ (LP: #1036240)
-- Chuck Short <zulcss@ubuntu.com> Sun, 19 Aug 2012 13:36:22 -0500
cinder (2012.2~f3~20120809.102-0ubuntu2) quantal; urgency=low
- * debian/cinder.conf, cinder-common.install: Use rootwrap.conf. (LP: #1036240)
+ * debian/cinder.conf, cinder-common.install: Use rootwrap.conf. (LP: #1036240)
* debian/control: Drop python-babel.
-- Chuck Short <zulcss@ubuntu.com> Mon, 13 Aug 2012 14:14:31 -0500
--- /dev/null
+--- /usr/lib/python2.7/dist-packages/cinder/db/sqlalchemy/api.py 2016-08-15 20:22:13.000000000 +0000
++++ b/cinder/db/sqlalchemy/api.py 2016-08-17 09:21:49.720954120 +0000
+@@ -396,9 +396,10 @@
+ match_level = 'host'
+
+ # Mysql is not doing case sensitive filtering, so we force it
+- if CONF.database.connection.startswith('mysql:'):
++ conn_str = CONF.database.connection
++ if conn_str.startswith('mysql') and conn_str[5] in ['+', ':']:
+ cmp_value = func.binary(value)
+- like_op = 'LIKE_BINARY'
++ like_op = 'LIKE BINARY'
+ else:
+ cmp_value = value
+ like_op = 'LIKE'