aws-samples / aws-samples/aws-database-migration-samples
Bug in PostgresSQL generateticketactivity.sql
Open
- Dominant language
- PLpgSQL
- Stars
- 185
- Forks
- 215
- PR merge metrics
- No merged PRs in 30d
Description
The PostgresSQL generateticketactivity.sql does not generate 1-6 tickets as documented in the readme. The line:
tick_quantity := floor(random()*(10000-2000+2000))+2000;
Should be:
tick_quantity := floor(random()*(6-1))+1;
Contributor guide
Assessment
This issue has not been assessed yet.