File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed
QueryDB.Core.Tests/SeedData Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments