We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a91a66 commit 4c0fef7Copy full SHA for 4c0fef7
packages/cubejs-schema-compiler/src/compiler/YamlCompiler.ts
@@ -94,7 +94,7 @@ export class YamlCompiler {
94
return;
95
}
96
97
- const yamlObj = YAML.load(file.content);
+ const yamlObj: any = YAML.load(file.content);
98
if (!yamlObj) {
99
100
packages/cubejs-snowflake-driver/src/SnowflakeDriver.ts
@@ -715,6 +715,8 @@ export class SnowflakeDriver extends BaseDriver implements DriverInterface {
715
FILE_FORMAT: '(' +
716
'TYPE = CSV, ' +
717
'COMPRESSION = GZIP, ' +
718
+ 'DATE_FORMAT = \'YYYY-MM-DD\', ' +
719
+ 'TIMESTAMP_FORMAT = \'YYYY-MM-DD"T"HH24:MI:SS.FF3TZH:TZM\', ' +
720
'FIELD_OPTIONALLY_ENCLOSED_BY = \'"\'' +
721
')',
722
};
0 commit comments