Skip to content
Snippets Groups Projects
Commit e3658e70 authored by Priya Poojari's avatar Priya Poojari Committed by GCP Dataform
Browse files

Initial commit

parent ec9df533
Branches
No related tags found
No related merge requests found
node_modules/
-- This is an example SQLX file to help you learn the basics of Dataform.
-- Visit https://cloud.google.com/dataform/docs/sql-workflows for more information on how to configure your SQL workflow.
-- You can delete this file, then commit and push your changes to your repository when you are ready.
-- Config blocks allow you to configure, document, and test your data assets.
config {
type: "view", // Creates a view in BigQuery. Try changing to "table" instead.
columns: {
test: "A description for the test column", // Column descriptions are pushed to BigQuery.
}
}
-- The rest of a SQLX file contains your SELECT statement used to create the table.
SELECT 1 as test
config { type: "view" }
-- Use the ref() function to manage dependencies.
-- Learn more about ref() and other built in functions here: https://cloud.google.com/dataform/docs/dataform-core
SELECT test from ${ref("first_view")}
defaultProject: maximal-chemist-355505
defaultLocation: asia-south1
defaultDataset: dataform
defaultAssertionDataset: dataform_assertions
dataformCoreVersion: 3.0.0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment