Skip to content

Commit

Permalink
fix unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
youngsofun committed Jan 17, 2023
1 parent ce03b45 commit 899ef28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/query/ast/tests/it/testdata/statement.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5738,7 +5738,7 @@ CreateStage(
---------- Input ----------
CREATE STAGE IF NOT EXISTS test_stage url='s3://load/files/' credentials=(aws_key_id='1a2b3c' aws_secret_key='4x5y6z') file_format=(type = CSV compression = GZIP record_delimiter=',')
---------- Output ---------
CREATE STAGE IF NOT EXISTS test_stage URL = 's3://load/files/' CONNECTION = ( aws_key_id='1a2b3c' aws_secret_key='4x5y6z' ) FILE_FORMAT = ( compression = 'GZIP' format = 'CSV' record_delimiter = ',' )
CREATE STAGE IF NOT EXISTS test_stage URL = 's3://load/files/' CONNECTION = ( aws_key_id='1a2b3c' aws_secret_key='4x5y6z' ) FILE_FORMAT = ( compression = 'GZIP' record_delimiter = ',' type = 'CSV' )
---------- AST ------------
CreateStage(
CreateStageStmt {
Expand All @@ -5761,8 +5761,8 @@ CreateStage(
),
file_format_options: {
"compression": "GZIP",
"format": "CSV",
"record_delimiter": ",",
"type": "CSV",
},
on_error: "",
size_limit: 0,
Expand Down

0 comments on commit 899ef28

Please sign in to comment.