Marios Trivyzas
|
410f570d5f
|
SQL: Implement NULLIF(expr1, expr2) function (#35826)
NULLIF returns null if the 2 expressions are equal or the
expr1 otherwise.
Closes: #35818
|
2018-11-23 22:19:27 +01:00 |
Marios Trivyzas
|
92acf47c16
|
SQL: Implement NVL(expr1, expr2) (#35794)
Add NVL as alias to IFNULL as they have the same
behaviour. Add basic tests and docs.
Closes: #35782
|
2018-11-22 11:41:00 +01:00 |
Marios Trivyzas
|
d95d885bae
|
SQL: Implement ISNULL(expr1, expr2) (#35793)
Add ISNULL as an alias of IFNULL as they have the
same behaviour. Add basic test and docs.
Closes: #35781
|
2018-11-21 23:15:10 +01:00 |
Marios Trivyzas
|
e179bd393d
|
SQL: Implement IFNULL variant of COALESCE (#35762)
IFNULL is a MySQL variant (also used in other DBs) which
takes only 2 arguments and returns the first one that is not null.
Closes: #35749
|
2018-11-21 17:07:07 +01:00 |
Marios Trivyzas
|
b1818dbdce
|
SQL: [docs] Add documentation for COALESCE (#35740)
Follows: #35253
|
2018-11-21 01:43:05 +01:00 |