From 51b01ae48126c625810f39b52e0e7710213f29ff Mon Sep 17 00:00:00 2001 From: Tanner Clary <116591231+tanclary@users.noreply.github.com> Date: Wed, 13 Mar 2024 16:02:11 -0700 Subject: [PATCH] [b/328442222] Fix typo in DIV definition (#46) The arguments should be separated by commas, I think the backslash is probably just a typo. --- connector/tableau/looker-jdbc/dialect.tdd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector/tableau/looker-jdbc/dialect.tdd b/connector/tableau/looker-jdbc/dialect.tdd index fd0ddcdda9f..579025a0369 100644 --- a/connector/tableau/looker-jdbc/dialect.tdd +++ b/connector/tableau/looker-jdbc/dialect.tdd @@ -83,7 +83,7 @@ - CAST(SAFE_DIVIDE((%1) / (%2)) AS INTEGER) + CAST(SAFE_DIVIDE((%1), (%2)) AS INTEGER)