Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
2a62a92e
Commit
2a62a92e
authored
Nov 05, 2019
by
Carsten Rose
Browse files
QIFEMPTY: detected empty for all - fixed
parent
6825cf77
Pipeline
#2600
failed with stages
in 2 minutes and 46 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Classes/Sql/function.sql
View file @
2a62a92e
...
...
@@ -81,7 +81,7 @@ CREATE FUNCTION QIFEMPTY(input TEXT, token TEXT)
BEGIN
DECLARE
output
TEXT
;
SET
output
=
IF
(
ISNULL
(
input
)
OR
input
=
''
OR
INPUT
=
'0'
OR
input
=
'0000-00-00'
OR
input
=
'0000-00-00 00:00:00'
,
token
,
IF
(
ISNULL
(
input
)
OR
input
=
''
OR
input
=
'0000-00-00'
OR
input
=
'0000-00-00 00:00:00'
,
token
,
input
);
RETURN
output
;
END
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment