Skip to content

Commit

Permalink
snowflake
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeNitsenko committed Sep 13, 2023
1 parent 09abf35 commit c475fb2
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Queries with the @cubejs-backend/snowflake-driver should load schemas, tables for specific schemas, and columns for specific tables 1`] = `
exports[`Incremental schema loading @cubejs-backend/snowflake-driver should load columns for specific tables 1`] = `
Object {
"column_name": Any<String>,
"data_type": Any<String>,
"schema_name": Any<String>,
"table_name": Any<String>,
}
`;
exports[`Queries with the @cubejs-backend/snowflake-driver should load schemas, tables for specific schemas, and columns for specific tables 2`] = `
exports[`Incremental schema loading @cubejs-backend/snowflake-driver should load schemas 1`] = `
Object {
"schema_name": Any<String>,
"table_name": Any<String>,
}
`;
exports[`Queries with the @cubejs-backend/snowflake-driver should load schemas, tables for specific schemas, and columns for specific tables 3`] = `
exports[`Incremental schema loading @cubejs-backend/snowflake-driver should load tables for specific schemas 1`] = `
Object {
"column_name": Any<String>,
"data_type": Any<String>,
"schema_name": Any<String>,
"table_name": Any<String>,
}
Expand Down

0 comments on commit c475fb2

Please sign in to comment.