v3.5.100-preview20240819 #1868 #1855 #1763 #939 #991

This commit is contained in:
2881099
2024-08-21 03:00:37 +08:00
parent 2334fe2450
commit dd4aa0259f
36 changed files with 50 additions and 348 deletions

View File

@ -146,7 +146,6 @@ namespace FreeSql.Tests.Duckdb
testFieldBoolArrayNullable = new bool?[] { true, true, null, false, false },
testFieldBoolNullable = true,
testFieldByte = byte.MaxValue,
testFieldByteArray = new byte[] { 0, 1, 2, 3, 4, 5, 6 },
testFieldByteArrayNullable = new byte?[] { 0, 1, 2, 3, null, 4, 5, 6 },
testFieldByteNullable = byte.MinValue,
testFieldBytes = Encoding.UTF8.GetBytes("我是中国人"),
@ -310,7 +309,6 @@ namespace FreeSql.Tests.Duckdb
public short[] testFieldShortArray { get; set; }
public int[] testFieldIntArray { get; set; }
public long[] testFieldLongArray { get; set; }
public byte[] testFieldByteArray { get; set; }
public ushort[] testFieldUShortArray { get; set; }
public uint[] testFieldUIntArray { get; set; }
public ulong[] testFieldULongArray { get; set; }