Skip to content

Commit

Permalink
Merge pull request #533 from ryan-syed/master
Browse files Browse the repository at this point in the history
Improved data upload instructions for PQ SDK Test framework data
  • Loading branch information
mattmasson authored Jun 13, 2024
2 parents 81482fa + 455731a commit 2d65756
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions testframework/data/PQSDKTestFrameworkDataSchema.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
NOTE:
1) While uploading to the data source, all decimal values should have a scale of 2. That is, the number of digits after the decimal point should be 2.
2) All timestamp values should be uploaded to the datasouce in MM/DD/YYYY HH24:MI:SS format.
*/

CREATE TABLE NycTaxiGreen (
RecordID int,
VendorID int,
Expand All @@ -14,7 +20,7 @@ CREATE TABLE NycTaxiGreen (
mta_tax double,
tip_amount double,
tolls_amount double,
improvement_surcharge string,
improvement_surcharge double,
total_amount double,
payment_type int,
trip_type int,
Expand All @@ -26,4 +32,4 @@ CREATE TABLE TaxiZoneLookup (
Borough string,
Zone string,
service_zone string
);
);

0 comments on commit 2d65756

Please sign in to comment.