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
使用作者的Test 添加 如下代码
@Test public void testInsertSelectUUID() { String sql = "INSERT INTO dwd_hudi_users (id, name, birthday) " + "SELECT " + " ROW_NUMBER() OVER (ORDER BY ts DESC) as id," + " UUID() as name," + " birthday " + "FROM" + " ods_mysql_users"; String[][] expectedArray = { {"ods_mysql_users", "ts", "dwd_hudi_users", "id", "ROW_NUMBER() OVER (ORDER BY ts DESC NULLS LAST)"}, {"ods_mysql_users", "name", "dwd_hudi_users", "name"}, {"ods_mysql_users", "ts", "dwd_hudi_users", "birthday"} }; analyzeLineage(sql, expectedArray); }
其中 {"ods_mysql_users", "ts", "dwd_hudi_users", "birthday"} 期望应该是 {"ods_mysql_users", "birthday", "dwd_hudi_users", "birthday"} name字段的sourceCol 是uuid函数 应该是没有列吧
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
使用作者的Test 添加 如下代码
其中 {"ods_mysql_users", "ts", "dwd_hudi_users", "birthday"} 期望应该是 {"ods_mysql_users", "birthday", "dwd_hudi_users", "birthday"} name字段的sourceCol 是uuid函数 应该是没有列吧
The text was updated successfully, but these errors were encountered: