mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-12721 Wrong execution plan for WHERE (date_field <=> timestamp_expr AND TRUE)
This commit is contained in:
@ -594,6 +594,17 @@ public:
|
||||
};
|
||||
|
||||
|
||||
class SEL_ARG_IMPOSSIBLE: public SEL_ARG
|
||||
{
|
||||
public:
|
||||
SEL_ARG_IMPOSSIBLE(Field *field)
|
||||
:SEL_ARG(field, 0, 0)
|
||||
{
|
||||
type= SEL_ARG::IMPOSSIBLE;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class RANGE_OPT_PARAM
|
||||
{
|
||||
public:
|
||||
|
Reference in New Issue
Block a user