Skip to content

Commit e69c382

Browse files
MACKAT05Copilot
andauthored
Apply suggestions from code review
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 9427075 commit e69c382

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
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

examples/schemachange-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dry-run: false
2626
# Template variables
2727
vars:
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

@@ -63,7 +63,7 @@ vars:
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:

tests/conditional/test.expect

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CREATE 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
);

0 commit comments

Comments
 (0)