File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 9191 # Test environment variablesin scripts
9292 cd ../env_vars
9393 if [ -f env.sh ]; then source env.sh; fi
94- echo "Testing environment variabledis ..."
94+ echo "Testing environment variables ..."
9595 sqlfluff render --config .sqlfluff test.sql > test.out
9696 diff test.out test.expect || echo "Output differs from expected"
9797
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ dry-run: false
2626# Template variables
2727vars :
2828 # Environment settings
29- # note: these variables are not availible in the jinja context that evaluates this file
29+ # note: these variables are not available in the jinja context that evaluates this file
3030 environment : ' {{ env_var("ENVIRONMENT", "dev") }}'
3131 region : ' us-west-2'
3232
6363 features :
6464 enable_data_masking : ' {{ env_var("ENABLE_DATA_MASKING", "false") }}'
6565 enable_column_encryption : true
66- enable_row_level_security : ' {{ env_var("ENVIRONMENT", "dev")== "prod" }}'
66+ enable_row_level_security : ' {{ env_var("ENVIRONMENT", "dev") == "prod" }}'
6767
6868 # Security and compliance
6969 data_classification :
Original file line number Diff line number Diff line change 11CREATE TABLE events (
22 id INTEGER,
33 sensitive_data VARCHAR(255),
4- debug_info VARCHAR(1000),created_at TIMESTAMP
4+ debug_info VARCHAR(1000), created_at TIMESTAMP
55);
You can’t perform that action at this time.
0 commit comments