-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature]: Support reading and writing oceanbase via JDBC or direct-l…
…oad api (#3) * feat: Introducing new feature: Spark Connector OceanBase. * Enhancement: Bug fix. * Enhancement: Fix doc. * Enhancement: Fix doc.
- Loading branch information
Showing
47 changed files
with
5,663 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: build | ||
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- 'docs/**' | ||
- '**.md' | ||
- '.*' | ||
push: | ||
branches: | ||
- main | ||
- 'release-*' | ||
|
||
env: | ||
JDK_VERSION: 8 | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.number || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK ${{ env.JDK_VERSION }} | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ env.JDK_VERSION }} | ||
distribution: 'adopt' | ||
cache: 'maven' | ||
|
||
- name: Build and Test | ||
timeout-minutes: 60 | ||
run: mvn clean package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
runner.dialect = scala212 | ||
|
||
# Version is required to make sure IntelliJ picks the right version | ||
version = 3.4.3 | ||
preset = default | ||
|
||
# Max column | ||
maxColumn = 100 | ||
|
||
# This parameter simply says the .stripMargin method was not redefined by the user to assign | ||
# special meaning to indentation preceding the | character. Hence, that indentation can be modified. | ||
assumeStandardLibraryStripMargin = true | ||
align.stripMargin = true | ||
|
||
# Align settings | ||
align.preset = none | ||
align.closeParenSite = false | ||
align.openParenCallSite = false | ||
danglingParentheses.defnSite = false | ||
danglingParentheses.callSite = false | ||
danglingParentheses.ctrlSite = true | ||
danglingParentheses.tupleSite = false | ||
align.openParenCallSite = false | ||
align.openParenDefnSite = false | ||
align.openParenTupleSite = false | ||
|
||
# Newlines | ||
newlines.alwaysBeforeElseAfterCurlyIf = false | ||
newlines.beforeCurlyLambdaParams = multiline # Newline before lambda params | ||
newlines.afterCurlyLambdaParams = squash # No newline after lambda params | ||
newlines.inInterpolation = "avoid" | ||
newlines.avoidInResultType = true | ||
optIn.annotationNewlines = true | ||
|
||
# Scaladoc | ||
docstrings.style = Asterisk # Javadoc style | ||
docstrings.removeEmpty = true | ||
docstrings.oneline = fold | ||
docstrings.forceBlankLineBefore = true | ||
|
||
# Indentation | ||
indent.extendSite = 2 # This makes sure extend is not indented as the ctor parameters | ||
|
||
# Rewrites | ||
rewrite.rules = [AvoidInfix, Imports, RedundantBraces, SortModifiers] | ||
|
||
# Imports | ||
rewrite.imports.sort = scalastyle | ||
rewrite.imports.groups = [ | ||
["com.oceanbase\\..*"], | ||
["com.oceanbase.shade\\..*"], | ||
[".*"], | ||
["javax\\..*"], | ||
["java\\..*"], | ||
["scala\\..*"] | ||
] | ||
rewrite.imports.contiguousGroups = no | ||
importSelectors = singleline # Imports in a single line, like IntelliJ | ||
|
||
# Remove redundant braces in string interpolation. | ||
rewrite.redundantBraces.stringInterpolation = true | ||
rewrite.redundantBraces.defnBodies = false | ||
rewrite.redundantBraces.generalExpressions = false | ||
rewrite.redundantBraces.ifElseExpressions = false | ||
rewrite.redundantBraces.methodBodies = false | ||
rewrite.redundantBraces.includeUnitMethods = false | ||
rewrite.redundantBraces.maxBreaks = 1 | ||
|
||
# Remove trailing commas | ||
rewrite.trailingCommas.style = "never" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.