Kang
7d49ddf50c
[bugfix](thirdparty) patch simdjson to avoid conflict with odbc macro BOOL (#15223)
fix conflit name BOOL in odbc sqltypes.h and simdjson element.h. Change BOOL to BOOLEAN in simdjson.
- thirdparty/installed/include/sqltypes.h
> #define BOOL int
- thirdparty/src/simdjson-1.0.2/include/simdjson/dom/element.h
> enum class element_type {
> ARRAY = '[', ///< dom::array
> OBJECT = '{', ///< dom::object
> INT64 = 'l', ///< int64_t
> UINT64 = 'u', ///< uint64_t: any integer that fits in uint64_t but *not* int64_t
> DOUBLE = 'd', ///< double: Any number with a "." or "e" that fits in double.
> STRING = '"', ///< std::string_view
> BOOL = 't', ///< bool
> NULL_VALUE = 'n' ///< null
> };
>
2022-12-22 09:40:04 +08:00
..
2022-12-15 21:36:28 +08:00
2022-11-11 15:10:20 +08:00
2022-09-27 10:29:13 +08:00
2022-10-11 15:38:28 +08:00
2022-10-11 15:38:28 +08:00
2022-11-21 20:45:50 +08:00
2022-01-29 12:33:32 +08:00
2022-01-21 12:12:04 +08:00
2022-06-09 23:36:09 +08:00
2022-09-14 23:31:48 +08:00
2022-05-20 09:52:36 +08:00
2022-05-22 20:58:19 +08:00
2022-11-21 20:45:50 +08:00
2021-03-25 09:30:38 +08:00
2017-08-11 17:51:21 +08:00
2022-01-24 13:16:37 +08:00
2022-09-18 17:40:23 +08:00
2022-01-21 12:12:04 +08:00
2022-12-22 09:40:04 +08:00
2022-07-26 11:28:25 +08:00