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
CREATE EXTERNAL CATALOG iceberg PROPERTIES ( "type" = "iceberg", "iceberg.catalog.type" = "hadoop", "iceberg.catalog.warehouse" = "hdfs://namenode/path/to/iceberg/" ); SET CATALOG iceberg; CREATE DATABASE db1; USE db1;
CREATE TABLE member ( name STRING ); INSERT INTO member VALUES ('Kim'); SELECT * FROM member; +------+ | name | +------+ | Kim | +------+
DROP TABLE member; CREATE TABLE member ( address STRING -- address column added rather than name ); DESC member; +-------+---------------------+------+-------+---------+-------+---------+ | Field | Type | Null | Key | Default | Extra | Comment | +-------+---------------------+------+-------+---------+-------+---------+ | name | VARCHAR(1073741824) | Yes | false | NULL | | NULL | +-------+---------------------+------+-------+---------+-------+---------+
INSERT INTO member VALUES ('Earth'); SELECT * FROM member; +------+ | name | +------+ | Kim | <= invalid data +------+
new schema and new data should be shown
old schema and old data is printed.
REFRESH EXTERNAL TABLE <tab-name> doesn't solved this problem.
REFRESH EXTERNAL TABLE <tab-name>
mysql> SELECT CURRENT_VERSION(); +-------------------+ | current_version() | +-------------------+ | 3.3.5-6d81f75 | +-------------------+
The text was updated successfully, but these errors were encountered:
@jason-heo Thank you for filing this issue. We will try to reproduce this issue and reach out to you ASAP.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Steps to reproduce the behavior (Required)
Expected behavior (Required)
new schema and new data should be shown
Real behavior (Required)
old schema and old data is printed.
REFRESH EXTERNAL TABLE <tab-name>
doesn't solved this problem.StarRocks version (Required)
The text was updated successfully, but these errors were encountered: