Skip to main content
hic
Former Employee
Former Employee

Today, the Qlik engine has some bugs in the area of a search and a subsequent select. These affect both interactive searches and searches in Set Analysis expressions. We are working on fixing them. However, one of these coming bug fixes may cause some backward incompatibility. This post explains what the bug fix will mean, and what you can do to avoid future problems.

When you use Set analysis, you can choose to have a condition in the form of a list of values in the Set expression, or you can choose to have a rule-based definition - a search for field values.

Examples of hard coded lists:

Sum( {$<Year = {2013,2014,2015}>} Sales)
Sum( {$<Country = {'Australia','Canada','France'}>} Sales)

Examples of searches:

Sum( {$<Year = {">=2013"}>} Sales)
Sum( {$<Country = {"Austr*"}>} Sales)
Sum( {$<Customer = {"=Sum(Sales)>100000"}>} Sales)

All the above constructions work today, and they will work correctly also after the bug fix.

Note the double quotes in the search expressions. These define the search strings, and between them you can write any search string – the same way as you would in a list box search.

However, you should not use single quotes to define a search string.

Single quotes are reserved for literals, i.e. exact matches. Hence they should be used when you want to make a list of valid field values, like the above list of explicit countries. But they should not be used for searches. Single quotes imply a case sensitive match with a single field value.

This difference between single and double quotes has been correctly described in the reference manual that states that searches are “always defined by the use of double quotes”. Also, all examples with literal field values in the documentation use single quotes.

Now to the bug: QlikView and Qlik Sense currently do not respect the above difference between single and double quotes. Instead, strings enclosed in single quotes are interpreted as search strings. As a consequence, it is not possible to make case sensitive matches with field values, something which you sometimes want to do.

This bug will be fixed in the coming November releases of Qlik Sense and QlikView. Then, wildcards in strings enclosed by single quotes will no longer be considered as wildcards. Instead, the strings will be interpreted as literals, i.e. the engine will try to match the string with a field value containing the ‘*’ character. The same logic will apply also to relational operators and equals signs.

Unfortunately, this bug has been incorrectly utilized by some developers: I have seen Set Analysis expressions with correct search strings, but erroneously enclosed in single quotes; for example

Sum( {$<Country = {'Austr*'}>} Sales)

This search should instead have been written

Sum( {$<Country = {"Austr*"}>} Sales)

Hence, there are documents with expressions that will not work in the corrected algorithm. However, the bug fix will be implemented in such a way that old documents will use the old logic, and new documents will use the new logic. In addition, it will be possible to force the new logic for all documents by using a parameter in Settings.ini.

You can of course also change the single quotes in existing search strings to double quotes, and the expression will continue to do what it always has done.

This post is mainly to give you a heads-up on a coming change, and give you a chance to make a quality control of your own documents. We will publish more information as we get closer to the release.

HIC

 

Further information related to Set Analysis and Searches:

The Search String

Introduction to Set Analysis (video) - Part 1

Set Analysis - Part 2 - Cool Stuff You Can Do (video)

61 Comments
tresesco
MVP
MVP

Thanks a lot Henric, for the update and news. Finally case sensitive comparison would be smooth in set analysis. Many literal searching would not require unnecessary workarounds anymore.

12,129 Views
kkkumar82
Specialist III
Specialist III

Thanks Henric for the important update

0 Likes
12,129 Views
Clever_Anjos
Employee
Employee

Thanks for the update.
Forwarding it to my network.

0 Likes
12,129 Views
Anil_Babu_Samineni

Liked it !! But i am thinking how to know which values are getting correct and/or not. Example,

Sum({<Country = {Brazil}>} Sales) and Sum({<Country = {'Brazil'}>} Sales) returns the same values and tested the same till 5 M rows. Can we discuss about this part..

0 Likes
12,129 Views
hic
Former Employee
Former Employee

In the current version they will both result in the same numbers. That's the point.

But in the future Sum({<Country = {Brazil}>} Sales) will match BRAZIL but Sum({<Country = {'Brazil'}>} Sales) will not.


The first should be case insensitive and the second should be case sensitive.


HIC

12,129 Views
hic
Former Employee
Former Employee

Just to make it crystal clear:

No quotes: Case insensitive. Asterisk is not allowed.

Single quotes: Case sensitive. Asterisk is interpreted as Char(42).

Double quotes: Case insensitive. Asterisk is interpreted as a wildcard.

HIC

12,129 Views
Anil_Babu_Samineni

True, Here Sum({<Country = {Brazil}>} Sales) // This case, If i want to get sales for BRAZIL Country then if we write something like below. It works as we state, Isn't it? Sum({<Country = {brazil}>} Sales)

When this functionality/algorithm coming? This November released version??

0 Likes
10,224 Views
hic
Former Employee
Former Employee

Yes, our current plan is to have this in the November releases.

10,224 Views
Gysbert_Wassenaar

This has also implications if you need to nest set modifiers.


This won't work anymore:

Sum( {$<Customer = {"=Sum({<Sales={ '>500' }>}Sales)>100000"}>} Sales)


Instead you need to use one of the other valid quote characters like backticks ` or square brackets [ ]

Sum( {$<Customer = {"=Sum({<Sales={ [>500] }>}Sales)>100000"}>} Sales)

Sum( {$<Customer = {"=Sum({<Sales={ `>500` }>}Sales)>100000"}>} Sales)

10,224 Views
Anil_Babu_Samineni

Impressive !!!

10,224 Views