Skip to content

Commit

Permalink
Merge pull request #3 from dmolenda-sumo/sqlqueryreceiver-fix-integra…
Browse files Browse the repository at this point in the history
…tion-tests

fix integration tests
  • Loading branch information
dmolenda-sumo authored May 12, 2023
2 parents 1a5175d + 66a772a commit ef5782d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions receiver/sqlqueryreceiver/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func TestPostgresIntegration(t *testing.T) {
{
SQL: "select * from simple_logs where id > $1",
TrackingColumn: "id",
TrackingStartValue: "3",
TrackingStartValue: "2",
Logs: []LogsCfg{
{
BodyColumn: "body",
Expand Down Expand Up @@ -261,7 +261,7 @@ func TestOracleDBIntegration(t *testing.T) {
{
SQL: "select * from sys.simple_logs where id > :id",
TrackingColumn: "id",
TrackingStartValue: "3",
TrackingStartValue: "2",
Logs: []LogsCfg{
{
BodyColumn: "BODY",
Expand All @@ -271,7 +271,7 @@ func TestOracleDBIntegration(t *testing.T) {
{
SQL: "select * from sys.simple_logs where insert_time > :insert_time",
TrackingColumn: "insert_time",
TrackingStartValue: "03-JUN-22 09.59.29.000000000 PM +00:00",
TrackingStartValue: "03-JUN-22 09.59.28.000000000 PM +00:00",
Logs: []LogsCfg{
{
BodyColumn: "BODY",
Expand Down

0 comments on commit ef5782d

Please sign in to comment.