Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating snapshots #1021

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Schema:
- quantity: BIGINT NOT NULL
- unit_price: DOUBLE
- discount: DOUBLE
- _ingest_time: TIMESTAMP_WITH_LOCAL_TIME_ZONE(3) NOT NULL
- _ingest_time: TIMESTAMP_LTZ(3) *PROCTIME* NOT NULL
Plan:
LogicalProject(id=[$0], customerid=[$1], time=[$2], productid=[$3], quantity=[$4], unit_price=[$5], discount=[$6], _ingest_time=[$7])
LogicalFilter(condition=[=($8, 1)])
Expand All @@ -39,7 +39,7 @@ Schema:
- quantity: BIGINT NOT NULL
- unit_price: DOUBLE
- discount: DOUBLE
- _ingest_time: TIMESTAMP_WITH_LOCAL_TIME_ZONE(3) NOT NULL
- _ingest_time: TIMESTAMP_LTZ(3) *PROCTIME* NOT NULL
Plan:
LogicalTableScan(table=[[orders_1]])

Expand Down Expand Up @@ -498,7 +498,7 @@ LogicalTableScan(table=[[orders_1]])
"schema" : {
"type" : "string",
"type" : "string",
"schema" : "\"An RFC-3339 compliant DateTime Scalar\"\nscalar DateTime\n\ntype DistinctOrders {\n id: Float!\n customerid: Float!\n time: DateTime!\n productid: Float!\n quantity: Float!\n unit_price: Float\n discount: Float\n}\n\ntype Orders {\n id: Float!\n customerid: Float!\n time: DateTime!\n productid: Float!\n quantity: Float!\n unit_price: Float\n discount: Float\n}\n\ntype Query {\n DistinctOrders(id: Float, limit: Int = 10, offset: Int = 0): [DistinctOrders!]\n Orders(id: Float, customerid: Float, time: DateTime, limit: Int = 10, offset: Int = 0): [Orders!]\n}\n"
"schema" : "\"An RFC-3339 compliant Full Date Scalar\"\nscalar Date\n\n\"An RFC-3339 compliant DateTime Scalar\"\nscalar DateTime\n\ntype DistinctOrders {\n id: Float!\n customerid: Float!\n time: DateTime!\n productid: Float!\n quantity: Float!\n unit_price: Float\n discount: Float\n}\n\n\"A JSON scalar\"\nscalar JSON\n\n\"24-hour clock time value string in the format `hh:mm:ss` or `hh:mm:ss.sss`.\"\nscalar LocalTime\n\ntype Orders {\n id: Float!\n customerid: Float!\n time: DateTime!\n productid: Float!\n quantity: Float!\n unit_price: Float\n discount: Float\n}\n\ntype Query {\n DistinctOrders(id: Float, limit: Int = 10, offset: Int = 0): [DistinctOrders!]\n Orders(id: Float, customerid: Float, time: DateTime, limit: Int = 10, offset: Int = 0): [Orders!]\n}\n"
}
}
}
Loading