apache / doris

Apache Doris is an easy-to-use, high performance and unified analytics database.
https://doris.apache.org
Apache License 2.0
12.34k stars 3.21k forks source link

[Enhancement] support NULL-safe equal(<=>) in mysql #19565

Open dataroaring opened 1 year ago

dataroaring commented 1 year ago

Search before asking

Description

NULL-safe equal. This operator performs an equality comparison like the = operator, but returns 1 rather than NULL if both operands are NULL, and 0 rather than NULL if one operand is NULL.

The <=> operator is equivalent to the standard SQL IS NOT DISTINCT FROM operator. https://dev.mysql.com/doc/refman/8.0/en/comparison-operators.html#operator_equal-to

Solution

Are you willing to submit PR?

Code of Conduct

tobehardest commented 1 year ago

I will do it.

TangSiyang2001 commented 1 year ago

I will do it.

Hi, how's it going?

tobehardest commented 1 year ago

I will do it.

Hi, how's it going?

Sorry, I'm preparing for the exam recently and haven't started yet.

Lournc commented 10 months ago

Is this issue finished now?