You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2023/01/04 07:50:44 UTC

[GitHub] [doris] siriume opened a new issue, #15601: [Bug] Cann''t set light_schema_change properties through alter statement

siriume opened a new issue, #15601:
URL: https://github.com/apache/doris/issues/15601

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues.
   
   
   ### Version
   
   branch-1.2-lts-45a8ceed2ec270338151be53c9aa74a389608d70
   
   ### What's Wrong?
   
   Cann''t set light_schema_change properties through alter statement, Only can use it in create statement.
   ctas:
   ```sql
   CREATE TABLE `test_light` (
     `k1` int(11) NOT NULL,
     `v1` int(11)
   ) ENGINE=OLAP
   UNIQUE KEY(`k1`)
   COMMENT 'OLAP'
   DISTRIBUTED BY HASH(`k1`) BUCKETS 1
   PROPERTIES (
   "replication_allocation" = "tag.location.default: 1",
   "light_schema_change" = "true",
   "bloom_filter_columns" = "k1",
   "in_memory" = "false",
   "storage_format" = "V2",
   "compression" = "LZ4",
   "disable_auto_compaction" = "false"
   );
   ```
   alter statement:
   ```sql
   ALTER TABLE test_light SET ("light_schema_change" = "true");
   ```
   error:
   ```
   [HY000][1105] errCode = 2, detailMessage = Unknown table property: [light_schema_change]
   ```
   
   ### What You Expected?
   
   Set light_schema_change properties through alter statement.
   
   ### How to Reproduce?
   
   _No response_
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] siriume closed issue #15601: [Bug] Cann''t set light_schema_change properties through alter statement

Posted by GitBox <gi...@apache.org>.
siriume closed issue #15601: [Bug] Cann''t set light_schema_change properties through alter statement
URL: https://github.com/apache/doris/issues/15601


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org