Skip to content

Commit

Permalink
Use varchar instead of date for Redis hash tests
Browse files Browse the repository at this point in the history
We should make dates work, but this fixes the tests for now.
  • Loading branch information
electrum committed May 19, 2016
1 parent 5a715e3 commit da03865
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions presto-redis/src/test/resources/tpch/hash/lineitem.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,19 +67,19 @@
{
"name": "shipdate",
"mapping": "shipdate",
"type": "DATE",
"type": "VARCHAR(10)",
"dataFormat": "iso8601"
},
{
"name": "commitdate",
"mapping": "commitdate",
"type": "DATE",
"type": "VARCHAR(10)",
"dataFormat": "iso8601"
},
{
"name": "receiptdate",
"mapping": "receiptdate",
"type": "DATE",
"type": "VARCHAR(10)",
"dataFormat": "iso8601"
},
{
Expand Down
2 changes: 1 addition & 1 deletion presto-redis/src/test/resources/tpch/hash/orders.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
{
"name": "orderdate",
"mapping": "orderdate",
"type": "DATE",
"type": "VARCHAR(10)",
"dataFormat": "iso8601"
},
{
Expand Down

0 comments on commit da03865

Please sign in to comment.