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
{ "password": "********", "driver": "com.mysql.cj.jdbc.Driver", "query": "select id as id,area_code as area_code,area_name as area_name from test.lwx_test04", "where_condition": "where create_time >'2024-11-11 11:00:00'", "fetch_size": 10000, "compatible_mode": "doris", "plugin_name": "Jdbc", "user": "user", "url": "url" } 上述配置报:ErrorCode:[JDBC-04], ErrorDescription:[Connector database failed] - open() failed.errCode = 2, detailMessage = Unknown column 'create_time' in 'table list' at…… 实际上create_time字段是存在的。 将 : "query": "select id as id,area_code as area_code,area_name as area_name from test.lwx_test04", "where_condition": "where create_time >'2024-11-11 11:00:00'", 合并改成: "query": "select id as id,area_code as area_code,area_name as area_name from test.lwx_test04 where create_time >'2024-11-11 11:00:00", sql能正常执行。 后续原因是create_time字段在query所在select字段中不存在所以报错,这个应该是一个bug
id
area_code
area_name
test
lwx_test04
V2.3.8
none
ErrorCode:[JDBC-04], ErrorDescription:[Connector database failed] - open() failed.errCode = 2, detailMessage = Unknown column 'create_time' in 'table list' at……
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Search before asking
What happened
{
"password": "********",
"driver": "com.mysql.cj.jdbc.Driver",
"query": "select id as
id
,area_code asarea_code
,area_name asarea_name
fromtest
.lwx_test04
","where_condition": "where create_time >'2024-11-11 11:00:00'",
"fetch_size": 10000,
"compatible_mode": "doris",
"plugin_name": "Jdbc",
"user": "user",
"url": "url"
}
上述配置报:ErrorCode:[JDBC-04], ErrorDescription:[Connector database failed] - open() failed.errCode = 2, detailMessage = Unknown column 'create_time' in 'table list' at……
实际上create_time字段是存在的。
将 : "query": "select id as
id
,area_code asarea_code
,area_name asarea_name
fromtest
.lwx_test04
","where_condition": "where create_time >'2024-11-11 11:00:00'",
合并改成:
"query": "select id as
id
,area_code asarea_code
,area_name asarea_name
fromtest
.lwx_test04
where create_time >'2024-11-11 11:00:00",sql能正常执行。
后续原因是create_time字段在query所在select字段中不存在所以报错,这个应该是一个bug
SeaTunnel Version
V2.3.8
SeaTunnel Config
Running Command
Error Exception
Zeta or Flink or Spark Version
No response
Java or Scala Version
No response
Screenshots
No response
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: