Skip to content

Commit

Permalink
updating snapshots (#1021)
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Broecheler <mbroecheler@users.noreply.github.com>
  • Loading branch information
mbroecheler authored Dec 4, 2024
1 parent adae260 commit 63c6dc9
Showing 1 changed file with 3 additions and 3 deletions.
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"
}
}
}

0 comments on commit 63c6dc9

Please sign in to comment.