|
Last change
on this file since 980 was 979, checked in by Kris Deugau, 11 days ago |
|
/branches/cname-collision
Fix dumb typo in timestamped record timestamp reset SQL
See #72
|
|
File size:
484 bytes
|
| Line | |
|---|
| 1 | -- Set timestamps on selected test records to a sliding window so that
|
|---|
| 2 | -- various tests expecting to find various expired, expiring, or valid-after
|
|---|
| 3 | -- records work correctly
|
|---|
| 4 |
|
|---|
| 5 | UPDATE records SET stamp = date_trunc('day', now() - interval '5 day') + '18:30' WHERE record_id = 47;
|
|---|
| 6 | UPDATE records SET stamp = date_trunc('day', now() + interval '3 day') + '07:00' WHERE record_id = 48;
|
|---|
| 7 | UPDATE records SET stamp = date_trunc('day', now() + interval '5 day') + '11:30' WHERE record_id = 49;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.