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-unsubscr...@doris.apache.org.apache.org

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


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

Reply via email to