Skip to content

Commit f4eb7fe

Browse files
committed
Oracle sql script update - Insert BFILE as NULL
1 parent 0c96692 commit f4eb7fe

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

QueryDB.Core.Tests/SeedData/oracle.sql

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,33 @@ INSERT INTO DataTypes
188188
TO_TIMESTAMP('2024-09-21 12:34:56', 'YYYY-MM-DD HH24:MI:SS'), -- TimestampWithLocalTimeZone_Column
189189
'Sample VARCHAR data', -- Varchar_Column
190190
'Sample VARCHAR2 data' -- Varchar2_Column
191-
)
191+
);
192+
193+
INSERT INTO DataTypes
194+
(
195+
Id,
196+
BFile_Column,
197+
Blob_Column,
198+
Char_Column,
199+
Clob_Column,
200+
Date_Column,
201+
Float_Column,
202+
Integer_Column,
203+
IntervalYearToMonth_Column,
204+
InternalDayToSecond_Column,
205+
Long_Column,
206+
NChar_Column,
207+
NClob_Column,
208+
Number_Column,
209+
NVarchar2_Column,
210+
Raw_Column,
211+
RowId_Column,
212+
Timestamp_Column,
213+
TimestampWithTimeZone_Column,
214+
TimestampWithLocalTimeZone_Column,
215+
Varchar_Column,
216+
Varchar2_Column
217+
)
192218
VALUES (
193219
2,
194220
NULL, -- BFile_Column

0 commit comments

Comments
 (0)