Skip to content

Commit

Permalink
docs: Update oracle_tables.sql (#549)
Browse files Browse the repository at this point in the history
Updated the name of index(removed extra underscore)

## Brief, plain english overview of your changes here


## Fixes
<!--- Which issue # does this fix? --->


## Reminders
- [ ] Added/ran automated tests
- [ ] Update README and/or examples
- [ ] Ran `mvn spotless:apply`

---
cc @kagkarlsson
  • Loading branch information
saurabhag123 authored Oct 25, 2024
1 parent 97eb8d2 commit 28ce451
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db-scheduler/src/test/resources/oracle_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ create table scheduled_tasks
PRIMARY KEY (task_name, task_instance)
);

CREATE INDEX scheduled_tasks__execution_time__idx on scheduled_tasks(execution_time);
CREATE INDEX scheduled_tasks__last_heartbeat__idx on scheduled_tasks(last_heartbeat);
CREATE INDEX scheduled_tasks_execution_time_idx on scheduled_tasks(execution_time);
CREATE INDEX scheduled_tasks_last_heartbeat_idx on scheduled_tasks(last_heartbeat);

0 comments on commit 28ce451

Please sign in to comment.