-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
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
feat(node parallelization): parallel without stats #319
base: main
Are you sure you want to change the base?
Changes from 6 commits
4125433
39ff122
d8d37ff
abbd99f
249d929
3eefa63
a5ed658
7bc4edb
1c34749
c593fe1
fd7f46b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -389,6 +389,7 @@ private static void processSql(String sql) { | |
} catch (SessionException e) { | ||
System.out.println(e.getMessage()); | ||
} catch (Exception e) { | ||
e.printStackTrace(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这些日志处理都按最新的来吧 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 解冲突后,参考曼薇的remote-test,针对功能写几个典型测试吧 |
||
System.out.println( | ||
"Execute Error: encounter error(s) when executing sql statement, " | ||
+ "see server log for more details."); | ||
|
@@ -446,6 +447,7 @@ private static void processSqlWithStream(String sql) { | |
} catch (SessionException e) { | ||
System.out.println(e.getMessage()); | ||
} catch (Exception e) { | ||
e.printStackTrace(); | ||
System.out.println( | ||
"Execute Error: encounter error(s) when executing sql statement, " | ||
+ "see server log for more details."); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
版本回退了吧
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done