Skip to content

Commit

Permalink
Snowflake does not explicitly support collation in the same way as so…
Browse files Browse the repository at this point in the history
…me other databases (#641)
  • Loading branch information
lbazetto authored Jan 17, 2024
1 parent 0bfd7d5 commit f4dfdd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage/sequelize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export type SequelizeType = {
};
};

const DIALECTS_WITH_CHARSET_AND_COLLATE = new Set(['mysql', 'mariadb', 'snowflake']);
const DIALECTS_WITH_CHARSET_AND_COLLATE = new Set(['mysql', 'mariadb']);

type ModelClassType = ModelClass & (new (values?: object, options?: any) => ModelTempInterface);

Expand Down

0 comments on commit f4dfdd8

Please sign in to comment.