Skip to content

Commit 0b49596

Browse files
committed
[DOP-31721] Validate SQL transformation FROM clause
1 parent d0555e2 commit 0b49596

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_unit/test_transfers/test_create_transfer.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1422,6 +1422,8 @@ async def test_developer_plus_can_create_transfer_with_sql_transformation(
14221422
"query",
14231423
[
14241424
"SELECT col1, col2 FROM source WHERE col1 > 100;",
1425+
"SELECT col1, col2\nFROM source\nWHERE col1 > 100;",
1426+
"SELECT col1, col2\r\nFROM source\r\nWHERE col1 > 100;",
14251427
"select COL1 from SOURCE",
14261428
" SELECT col1 FROM source ",
14271429
" WITH some AS (SELECT col1 FROM source) SELECT * FROM some;",

0 commit comments

Comments
 (0)