-
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?
Conversation
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.
基础版本太早啦,赶紧追上最新的版本
@@ -25,7 +25,7 @@ statement | |||
| SHOW jobStatus TRANSFORM JOB # showEligibleJobStatement | |||
| REMOVE HISTORYDATASOURCE removedStorageEngine (COMMA removedStorageEngine)* # removeHistoryDataSourceStatement | |||
| SET CONFIG configName = stringLiteral configValue = stringLiteral # setConfigStatement | |||
| SHOW CONFIG (configName = stringLiteral)? # showConfigStatement | |||
| SHOW CONFIG configName = stringLiteral # showConfigStatement |
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
@@ -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 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
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.
解冲突后,参考曼薇的remote-test,针对功能写几个典型测试吧
@@ -6096,125 +6093,6 @@ public void testConcurrentQuery() { | |||
executor.concurrentExecuteAndCompare(statementsAndExpectRes); | |||
} | |||
|
|||
@Test |
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.
为啥这个测试删除了?
@@ -0,0 +1,5 @@ | |||
0,0,0.5,true,aaa |
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.
这些文件在哪里用了吗?
@@ -0,0 +1 @@ | |||
aaabbbcccdddeee |
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.
所以应该还是没有同步更新到位?
No description provided.