Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OHR Support
Manage
Activity
Members
Labels
Plan
Issues
97
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
OHR Support
Commits
21b8e8b5
Commit
21b8e8b5
authored
14 years ago
by
Holger Just
Browse files
Options
Downloads
Patches
Plain Diff
[
#250
] Allow empty sets in query value lists
parent
f2285fa9
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/models/query.rb
+12
-2
12 additions, 2 deletions
app/models/query.rb
with
12 additions
and
2 deletions
app/models/query.rb
+
12
−
2
View file @
21b8e8b5
...
...
@@ -566,9 +566,19 @@ class Query < ActiveRecord::Base
sql
=
''
case
operator
when
"="
sql
=
"
#{
db_table
}
.
#{
db_field
}
IN ("
+
value
.
collect
{
|
val
|
"'
#{
connection
.
quote_string
(
val
)
}
'"
}.
join
(
","
)
+
")"
if
value
.
present?
sql
=
"
#{
db_table
}
.
#{
db_field
}
IN ("
+
value
.
collect
{
|
val
|
"'
#{
connection
.
quote_string
(
val
)
}
'"
}.
join
(
","
)
+
")"
else
# empty set of allowed values produces no result
sql
=
"0=1"
end
when
"!"
sql
=
"(
#{
db_table
}
.
#{
db_field
}
IS NULL OR
#{
db_table
}
.
#{
db_field
}
NOT IN ("
+
value
.
collect
{
|
val
|
"'
#{
connection
.
quote_string
(
val
)
}
'"
}.
join
(
","
)
+
"))"
if
value
.
present?
sql
=
"(
#{
db_table
}
.
#{
db_field
}
IS NULL OR
#{
db_table
}
.
#{
db_field
}
NOT IN ("
+
value
.
collect
{
|
val
|
"'
#{
connection
.
quote_string
(
val
)
}
'"
}.
join
(
","
)
+
"))"
else
# empty set of forbidden values allows all results
sql
=
"1=1"
end
when
"!*"
sql
=
"
#{
db_table
}
.
#{
db_field
}
IS NULL"
sql
<<
" OR
#{
db_table
}
.
#{
db_field
}
= ''"
if
is_custom_filter
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment