From 3c5c4e63ab433dc7f90eff48b99f04a463c5f5ee Mon Sep 17 00:00:00 2001 From: Grigoriy Pisarenko Date: Wed, 13 Nov 2024 13:43:47 +0000 Subject: [PATCH] Fixed build error --- ydb/library/yql/providers/pq/provider/yql_pq_dq_integration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/library/yql/providers/pq/provider/yql_pq_dq_integration.cpp b/ydb/library/yql/providers/pq/provider/yql_pq_dq_integration.cpp index 08657e1f8a21..cfa5da4d243e 100644 --- a/ydb/library/yql/providers/pq/provider/yql_pq_dq_integration.cpp +++ b/ydb/library/yql/providers/pq/provider/yql_pq_dq_integration.cpp @@ -211,7 +211,7 @@ class TPqDqIntegration: public TDqIntegrationBase { if (const auto& types = State_->Types) { if (const auto& optLLVM = types->OptLLVM) { - srcDesc.SetEnabledLLVM(!optLLVM->Empty() && *optLLVM != "OFF"); + srcDesc.SetEnabledLLVM(!optLLVM->empty() && *optLLVM != "OFF"); } }