From 2c4bac289b08fccb4029555839f4650c92ff1f63 Mon Sep 17 00:00:00 2001 From: Klesh Wong Date: Thu, 2 Jul 2026 14:12:23 +0800 Subject: [PATCH] refactor: deprecating dbt plugin --- backend/plugins/dbt/impl/impl.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/plugins/dbt/impl/impl.go b/backend/plugins/dbt/impl/impl.go index 5da8799fd87..c984187ca10 100644 --- a/backend/plugins/dbt/impl/impl.go +++ b/backend/plugins/dbt/impl/impl.go @@ -52,6 +52,7 @@ func (p Dbt) GetTablesInfo() []dal.Tabler { } func (p Dbt) PrepareTaskData(taskCtx plugin.TaskContext, options map[string]interface{}) (interface{}, errors.Error) { + taskCtx.GetLogger().Warn(nil, "The dbt plugin is deprecated and will be removed on August 31, 2026. Please migrate to alternative transformation approaches.") var op tasks.DbtOptions err := helper.Decode(options, &op, nil) if err != nil {