[ https://issues.apache.org/jira/browse/FLINK-38066?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Hao Li updated FLINK-38066: --------------------------- Description: # `build-target/bin/start-cluster.sh` from 2.1 branch build to start Flink cluster # `build-target/bin/sql-client.sh` from 2.1 branch build to start Sql client # Execute model CRUD command h3. Create model ``` CREATE MODEL test_model INPUT (i STRING) OUTPUT (o DOUBLE) WITH ( 'provider' = 'openai' ); ``` h3. Show models ``` SHOE MODELS; ``` h3. Describe model ``` DESCRIBE MODEL test_model; ``` h3. Alter model ``` ALTER MODEL test_model SET ('provider'='abc'); ``` h3. Show create model ``` SHOW CREATE MODEL test_model; ``` h3. Drop model ``` DROP MODEL test_model; ``` > Release Testing: Verify FLIP-437: Support ML Models in Flink SQL > ---------------------------------------------------------------- > > Key: FLINK-38066 > URL: https://issues.apache.org/jira/browse/FLINK-38066 > Project: Flink > Issue Type: Sub-task > Components: Table SQL / API > Reporter: Hao Li > Priority: Major > Labels: release-testing > > # `build-target/bin/start-cluster.sh` from 2.1 branch build to start Flink > cluster > # `build-target/bin/sql-client.sh` from 2.1 branch build to start Sql client > # Execute model CRUD command > h3. Create model > ``` > CREATE MODEL test_model > INPUT (i STRING) > OUTPUT (o DOUBLE) > WITH ( > 'provider' = 'openai' > ); > ``` > h3. Show models > ``` > SHOE MODELS; > ``` > h3. Describe model > ``` > DESCRIBE MODEL test_model; > ``` > h3. Alter model > ``` > ALTER MODEL test_model SET ('provider'='abc'); > ``` > h3. Show create model > ``` > SHOW CREATE MODEL test_model; > ``` > h3. Drop model > ``` > DROP MODEL test_model; > ``` -- This message was sent by Atlassian Jira (v8.20.10#820010)