mihaibudiu commented on PR #3544: URL: https://github.com/apache/calcite/pull/3544#issuecomment-1846447899
Since you have changes to a single file, one simple approach is to create a new PR starting from the main branch. - save the modified file to some external location: `core/src/test/java/org/apache/calcite/sql/type/SqlTypeUtilTest.java` - check out the main branch (`git checkout main`) - copy the modified file back over the main branch - create a new branch `git checkout -b newbranch` - add the changed file `git add core/` - commit the changes `git commit -s -m"[CALCITE-6131] There are duplicate sample tests in SqlTypeUtilTest"` - push the changes `git push origin newbranch` - submit a new PR and close this one -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
