|
@@ -818,6 +818,11 @@ by an equality filter")
|
818
|
818
|
mongoval = [ dhdl.cast_type(item) for item in mongoval[1:-1].split(',') ]
|
819
|
819
|
else:
|
820
|
820
|
mongoval = [ item for item in mongoval[1:-1].split(',') ]
|
|
821
|
+ elif value.startswith('(') and value.endswith(')'):
|
|
822
|
+ if (dhdl.cast_type is not None):
|
|
823
|
+ mongoval = [ dhdl.cast_type(mongoval[1:-1]) ]
|
|
824
|
+ else:
|
|
825
|
+ mongoval = [ mongoval[1:-1] ]
|
821
|
826
|
elif mongop == 'like':
|
822
|
827
|
#unescaping \
|
823
|
828
|
mongoval = value.replace('\\\\','\\')
|