Update Readme. Uncommend all tests.

This commit is contained in:
lganzzzo 2021-02-10 03:12:33 +02:00
parent e5c8d1ab4a
commit ca3c241fe9
2 changed files with 18 additions and 15 deletions

View File

@ -60,13 +60,16 @@ public:
### Supported Data Types
- INT2
- INT4
- INT8
- TIMESTAMP
- TEXT
- VARCHAR
- FLOAT4
- FLOAT8
- BOOL
- UUID
|Type|Supported|In Array|
|---|:---:|:---:|
|INT2|+|+|
|INT4|+|+|
|INT8|+|+|
|TIMESTAMP|+|+|
|TEXT|+|+|
|VARCHAR|+|+|
|FLOAT4|+|+|
|FLOAT8|+|+|
|BOOL|+|+|
|UUID|+|+|
|**Other Types**|-|-|

View File

@ -12,12 +12,12 @@ namespace {
void runTests() {
// OATPP_RUN_TEST(oatpp::test::postgresql::ql_template::ParserTest);
//
// OATPP_RUN_TEST(oatpp::test::postgresql::types::IntTest);
// OATPP_RUN_TEST(oatpp::test::postgresql::types::FloatTest);
OATPP_RUN_TEST(oatpp::test::postgresql::ql_template::ParserTest);
OATPP_RUN_TEST(oatpp::test::postgresql::types::IntTest);
OATPP_RUN_TEST(oatpp::test::postgresql::types::FloatTest);
OATPP_RUN_TEST(oatpp::test::postgresql::types::ArrayTest);
// OATPP_RUN_TEST(oatpp::test::postgresql::types::InterpretationTest);
OATPP_RUN_TEST(oatpp::test::postgresql::types::InterpretationTest);
}