diff options
| author | Олег <[email protected]> | 2024-03-28 17:58:40 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-03-28 17:58:40 +0300 |
| commit | 71ccd148087baeb233db4f6525dbef9b57e39f6f (patch) | |
| tree | 0345462aeec3643169c57925d487102386d5aa63 | |
| parent | ada785a4d54b3926691ae90e021152a20c5775a2 (diff) | |
Fix null pk tests (#3260)
| -rw-r--r-- | ydb/core/kqp/ut/olap/kqp_olap_ut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/kqp/ut/olap/kqp_olap_ut.cpp b/ydb/core/kqp/ut/olap/kqp_olap_ut.cpp index 3ffb9a23d03..3fb2db19c69 100644 --- a/ydb/core/kqp/ut/olap/kqp_olap_ut.cpp +++ b/ydb/core/kqp/ut/olap/kqp_olap_ut.cpp @@ -232,7 +232,7 @@ Y_UNIT_TEST_SUITE(KqpOlap) { result = R"(Columns { Name: "field" Type: ")" + TypeName + "\"}"; } result += R"( - Columns { Name: "pk_int" Type: "Int64" } + Columns { Name: "pk_int" Type: "Int64" NotNull: true } Columns { Name: "ts" Type: "Timestamp" } KeyColumnNames: "pk_int" Engine: COLUMN_ENGINE_REPLACING_TIMESERIES |
