Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Apr 20, 2022
1 parent d4c3bf9 commit 8c60434
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-mariadb-65
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM `soft_deletes` WHERE `soft_deletes`.`deleted_at` IS NOT NULL AND (`id` = NULL)
DELETE FROM `soft_deletes` WHERE (`id` = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-mariadb-91
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM `soft_deletes` WHERE `soft_deletes`.`deleted_at` != '0001-01-01 00:00:00' AND (`id` = NULL)
DELETE FROM `soft_deletes` WHERE (`id` = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-mssql2019-65
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM "soft_deletes" WHERE "soft_deletes"."deleted_at" IS NOT NULL AND ("id" = NULL)
DELETE FROM "soft_deletes" WHERE ("id" = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-mssql2019-91
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM "soft_deletes" WHERE "soft_deletes"."deleted_at" != '0001-01-01 00:00:00' AND ("id" = NULL)
DELETE FROM "soft_deletes" WHERE ("id" = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-mysql5-65
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM `soft_deletes` WHERE `soft_deletes`.`deleted_at` IS NOT NULL AND (`id` = NULL)
DELETE FROM `soft_deletes` WHERE (`id` = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-mysql5-91
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM `soft_deletes` WHERE `soft_deletes`.`deleted_at` != '0001-01-01 00:00:00' AND (`id` = NULL)
DELETE FROM `soft_deletes` WHERE (`id` = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-mysql8-65
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM `soft_deletes` AS `soft_delete` WHERE `soft_delete`.`deleted_at` IS NOT NULL AND (`soft_delete`.`id` = NULL)
DELETE FROM `soft_deletes` AS `soft_delete` WHERE (`soft_delete`.`id` = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-mysql8-91
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM `soft_deletes` AS `soft_delete` WHERE `soft_delete`.`deleted_at` != '0001-01-01 00:00:00' AND (`soft_delete`.`id` = NULL)
DELETE FROM `soft_deletes` AS `soft_delete` WHERE (`soft_delete`.`id` = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-pg-65
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM "soft_deletes" AS "soft_delete" WHERE "soft_delete"."deleted_at" IS NOT NULL AND ("soft_delete"."id" = NULL)
DELETE FROM "soft_deletes" AS "soft_delete" WHERE ("soft_delete"."id" = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-pg-91
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM "soft_deletes" AS "soft_delete" WHERE "soft_delete"."deleted_at" != '0001-01-01 00:00:00+00:00' AND ("soft_delete"."id" = NULL)
DELETE FROM "soft_deletes" AS "soft_delete" WHERE ("soft_delete"."id" = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-pgx-65
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM "soft_deletes" AS "soft_delete" WHERE "soft_delete"."deleted_at" IS NOT NULL AND ("soft_delete"."id" = NULL)
DELETE FROM "soft_deletes" AS "soft_delete" WHERE ("soft_delete"."id" = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-pgx-91
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM "soft_deletes" AS "soft_delete" WHERE "soft_delete"."deleted_at" != '0001-01-01 00:00:00+00:00' AND ("soft_delete"."id" = NULL)
DELETE FROM "soft_deletes" AS "soft_delete" WHERE ("soft_delete"."id" = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-sqlite-65
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM "soft_deletes" AS "soft_delete" WHERE "soft_delete"."deleted_at" IS NOT NULL AND ("soft_delete"."id" = NULL)
DELETE FROM "soft_deletes" AS "soft_delete" WHERE ("soft_delete"."id" = NULL)
2 changes: 1 addition & 1 deletion internal/dbtest/testdata/snapshots/TestQuery-sqlite-91
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DELETE FROM "soft_deletes" AS "soft_delete" WHERE "soft_delete"."deleted_at" != '0001-01-01 00:00:00+00:00' AND ("soft_delete"."id" = NULL)
DELETE FROM "soft_deletes" AS "soft_delete" WHERE ("soft_delete"."id" = NULL)

0 comments on commit 8c60434

Please sign in to comment.