mirror of https://github.com/databricks/cli.git
Fix conditional in query in `default-sql` template (#1479)
## Changes This corrects a mistake in the sample SQL identified by @pietern
This commit is contained in:
parent
35186d5ddb
commit
99c7d136d6
|
@ -12,7 +12,7 @@ FROM
|
||||||
orders_raw
|
orders_raw
|
||||||
|
|
||||||
WHERE if(
|
WHERE if(
|
||||||
{{"{{"}}bundle_target{{"}}"}} != "prod",
|
{{"{{"}}bundle_target{{"}}"}} = "prod",
|
||||||
true,
|
true,
|
||||||
|
|
||||||
-- During development, only process a smaller range of data
|
-- During development, only process a smaller range of data
|
||||||
|
|
Loading…
Reference in New Issue