Skip to content

Commit

Permalink
force id to use sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
mastercactapus committed Nov 27, 2023
1 parent 2ac82d1 commit ad395c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/smoke/graphqlservicelabels_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ func TestGraphQLServiceLabels(t *testing.T) {
values
({{uuid "sid"}}, {{uuid "eid"}}, 'service');
insert into labels (id, tgt_service_id, key, value)
insert into labels (tgt_service_id, key, value)
values
('1', {{uuid "sid"}}, 'foo/bar', 'testvalue');
({{uuid "sid"}}, 'foo/bar', 'testvalue');
`

h := harness.NewHarness(t, sql, "labels-switchover-trigger")
Expand Down

0 comments on commit ad395c3

Please sign in to comment.