We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please read the title.
create table test_decimal ( key Decimal(22,9), value Utf8, primary key(key), ) with ( AUTO_PARTITIONING_BY_SIZE = ENABLED, AUTO_PARTITIONING_PARTITION_SIZE_MB = 1, AUTO_PARTITIONING_MIN_PARTITIONS_COUNT = 2 );
See the gist. Needs to be 100k+ symbols.
UPSERT INTO test_decimal ( key, value ) VALUES (CAST(1 as Decimal(22,9)), $huge_value), (CAST(2 as Decimal(22,9)), $huge_value), (CAST(3 as Decimal(22,9)), $huge_value), (CAST(4 as Decimal(22,9)), $huge_value), (CAST(5 as Decimal(22,9)), $huge_value), (CAST(6 as Decimal(22,9)), $huge_value), (CAST(7 as Decimal(22,9)), $huge_value), (CAST(8 as Decimal(22,9)), $huge_value), (CAST(9 as Decimal(22,9)), $huge_value), (CAST(10 as Decimal(22,9)), $huge_value), (CAST(11 as Decimal(22,9)), $huge_value), (CAST(12 as Decimal(22,9)), $huge_value), (CAST(13 as Decimal(22,9)), $huge_value), (CAST(14 as Decimal(22,9)), $huge_value), (CAST(15 as Decimal(22,9)), $huge_value), (CAST(16 as Decimal(22,9)), $huge_value), (CAST(17 as Decimal(22,9)), $huge_value), (CAST(18 as Decimal(22,9)), $huge_value), (CAST(19 as Decimal(22,9)), $huge_value), (CAST(20 as Decimal(22,9)), $huge_value);
test_decimal
ydb tools dump --path test_decimal --scheme-only --output test_decimal_backup
ydb tools restore --path . --input test_decimal_backup
┌──────────────────────┬───────┬───────────┬───────────┬─────────────────────────┬────────────────────────┐ │ id │ ready │ status │ progress │ endpoint │ bucket │ ├──────────────────────┼───────┼───────────┼───────────┼─────────────────────────┼────────────────────────┤ │ ydb://import/8?id=84 │ true │ CANCELLED │ Cancelled │ storage.yandexcloud.net │ ydb-backup-test-bucket │ │ 4424930141976&kind=s │ │ │ │ │ │ │ 3 │ │ │ │ │ │ ├╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴┴╴╴╴╴╴╴╴┴╴╴╴╴╴╴╴╴╴╴╴┴╴╴╴╴╴╴╴╴╴╴╴┴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴┴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴╴┤ │ Issues: │ │ - <main>: Error: Error at split boundary 0: Unsupported typeId 4865 at index 0
Status: SCHEME_ERROR Issues: <main>: Info: Path: /Root/dedicated/test_decimal <main>: Error: Error at split boundary 0: Unsupported typeId 4865 at index 0
The text was updated successfully, but these errors were encountered:
azevaykin
Successfully merging a pull request may close this issue.
Description
Please read the title.
Steps to reproduce
huge_value definition
See the gist. Needs to be 100k+ symbols.
test_decimal
table would be split. Check that there are at least 2 partitions in it.ydb tools dump --path test_decimal --scheme-only --output test_decimal_backup
.test_decimal
table.ydb tools restore --path . --input test_decimal_backup
depending on your choice at step 4.The text was updated successfully, but these errors were encountered: