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
0.7.0-incubating
Flink hive-connect
create catalog test; use catalog test; create database test_db; use database test_db; create table test_table; insert data in test_table;
create catalog test1; use catalog test1; create database test_db; use database test_db; create table test_table; insert data in test_table;
select * from test1.testdb.test_table; select * from test.testdb.test_table;
The results are different on hive hdfs://and file://.
No response
The text was updated successfully, but these errors were encountered:
code snippet
Sorry, something went wrong.
I understand that this is not a bug. You use the same Hive Metastore, you can only have a test_db database, a test_table table.
test_db
test_table
In your code example, your if Not Exist statement, your Step 2 does not really go to create a database or table.
if Not Exist
Step 2
@zhuangchong I use the same hive-config-dir, but with different warehouse parameters in the code. Is this situation considered the same on hive?
Yes, because hive has only one metadata database.
No branches or pull requests
Search before asking
Paimon version
0.7.0-incubating
Compute Engine
Flink hive-connect
Minimal reproduce step
Step 1
create catalog test;
use catalog test;
create database test_db;
use database test_db;
create table test_table;
insert data in test_table;
Step 2
create catalog test1;
use catalog test1;
create database test_db;
use database test_db;
create table test_table;
insert data in test_table;
Step 3
select * from test1.testdb.test_table;
select * from test.testdb.test_table;
What doesn't meet your expectations?
The results are different on hive hdfs://and file://.
Anything else?
No response
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: