@@ -2587,7 +2587,7 @@ export function tests(test: Test) {
25872587
25882588 // https://github.com/drizzle-team/drizzle-orm/issues/5112
25892589 // looks like casing issue
2590- test . skipIf ( Date . now ( ) < + new Date ( '2026-02-24 ' ) ) . concurrent ( 'view #1' , async ( { push, createDB } ) => {
2590+ test . skipIf ( Date . now ( ) < + new Date ( '2026-03-03 ' ) ) . concurrent ( 'view #1' , async ( { push, createDB } ) => {
25912591 const animal = pgTable ( 'animal' , ( t ) => ( {
25922592 id : t . text ( ) . primaryKey ( ) ,
25932593 name : t . text ( ) . notNull ( ) ,
@@ -3797,7 +3797,7 @@ export function tests(test: Test) {
37973797 // https://github.com/drizzle-team/drizzle-orm/issues/5253
37983798 // enhancement
37993799 // allow select which columns to insert in insert...select
3800- test . skipIf ( Date . now ( ) < + new Date ( '2026-02-24 ' ) ) . concurrent ( 'insert into ... select #2' , async ( { db, push } ) => {
3800+ test . skipIf ( Date . now ( ) < + new Date ( '2026-03-03 ' ) ) . concurrent ( 'insert into ... select #2' , async ( { db, push } ) => {
38013801 const users = pgTable ( 'users_114' , {
38023802 id : integer ( 'id' ) . primaryKey ( ) ,
38033803 name : text ( 'name' ) . notNull ( ) ,
@@ -3871,7 +3871,7 @@ export function tests(test: Test) {
38713871 } ) ;
38723872
38733873 // https://github.com/drizzle-team/drizzle-orm/issues/4596
3874- test . skipIf ( Date . now ( ) < + new Date ( '2026-02-24 ' ) ) (
3874+ test . skipIf ( Date . now ( ) < + new Date ( '2026-03-03 ' ) ) (
38753875 'functional index; onConflict do update' ,
38763876 async ( { db, push } ) => {
38773877 throw new Error ( 'SKIP. commented below because of type error' ) ;
@@ -3909,7 +3909,7 @@ export function tests(test: Test) {
39093909 ) ;
39103910
39113911 // https://github.com/drizzle-team/drizzle-orm/issues/5282
3912- test . skipIf ( Date . now ( ) < + new Date ( '2026-02-24 ' ) ) ( 'casing in sql``' , async ( { createDB, push } ) => {
3912+ test . skipIf ( Date . now ( ) < + new Date ( '2026-03-03 ' ) ) ( 'casing in sql``' , async ( { createDB, push } ) => {
39133913 const payments = pgTable ( 'payments' , {
39143914 id : integer ( ) . primaryKey ( ) ,
39153915 amount : numeric ( ) ,
@@ -3944,7 +3944,7 @@ export function tests(test: Test) {
39443944 } ) ;
39453945
39463946 // https://github.com/drizzle-team/drizzle-orm/issues/4419
3947- test . skipIf ( Date . now ( ) < + new Date ( '2026-02-24 ' ) ) ( 'db/js timestamp comparison' , async ( { db, push } ) => {
3947+ test . skipIf ( Date . now ( ) < + new Date ( '2026-03-03 ' ) ) ( 'db/js timestamp comparison' , async ( { db, push } ) => {
39483948 const table1 = pgTable ( 'table1' , {
39493949 id : integer ( ) ,
39503950 // default config equal to: { mode: 'date' }
0 commit comments