1. 27 4月, 2021 1 次提交
  2. 26 4月, 2021 3 次提交
  3. 25 4月, 2021 2 次提交
  4. 23 4月, 2021 5 次提交
  5. 22 4月, 2021 8 次提交
  6. 21 4月, 2021 8 次提交
  7. 20 4月, 2021 4 次提交
  8. 19 4月, 2021 3 次提交
  9. 17 4月, 2021 1 次提交
  10. 16 4月, 2021 1 次提交
  11. 15 4月, 2021 3 次提交
  12. 14 4月, 2021 1 次提交
    • H
      [TD-3204]<fix>: support usigned integer types for C# connector (#5808) · 8713f96d
      Huo Linhe 提交于
      Added unsigned integer types and change taosdemo insert and select queries for these types.
      
      taos define | taos sql | c#
      --- | --- | ---
      UTINYINT | TINYINT UNSIGNED | `byte`
      USMALLINT | SMALLINT UNSIGNED | `ushort`
      UINT | INT UNSIGNED | `uint`
      UBIGINT | BIGINT UNSIGNED | `ulong`
      TINYINT | TINYINT | `sbyte`
      
      Note: also change the tinyint value type to C# `sbyte`(the right signed one byte type) in this pr.
      8713f96d