diff options
author | lukyan <lukyan@yandex-team.com> | 2023-09-27 14:20:15 +0300 |
---|---|---|
committer | lukyan <lukyan@yandex-team.com> | 2023-09-27 14:51:13 +0300 |
commit | 919edb908fef6f8d3d0fd359daf89378f94bc786 (patch) | |
tree | bfecf66f941666d69b188351ca93fa5773eafb52 | |
parent | 2dc62334f06ca1302a23f9907f8db5f75da99456 (diff) | |
download | ydb-919edb908fef6f8d3d0fd359daf89378f94bc786.tar.gz |
YT-16716: Enable new range inference in options by default
-rw-r--r-- | yt/yt/client/api/client_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/api/client_common.h b/yt/yt/client/api/client_common.h index 6d3eb61e4b0..8cbb77be07d 100644 --- a/yt/yt/client/api/client_common.h +++ b/yt/yt/client/api/client_common.h @@ -150,7 +150,7 @@ struct TSelectRowsOptionsBase bool VerboseLogging = false; // COMPAT(lukyan) //! Use fixed and rewritten range inference. - bool NewRangeInference = false; + bool NewRangeInference = true; //! Enables canonical SQL behaviour for relational operators, i.e. null </=/> value -> null. bool UseCanonicalNullRelations = false; }; |