Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Releases: ClickHouse/clickhouse-java

Release v0.3.2-patch11

28 Jul 15:26
@github-actions github-actions
27f8951
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

This is a patch release for bug fixes and experimental features.

  • Bug Fix

    • Bitmap64 deserilization error - #918
    • Incorrect update count - #947
    • Dependencies lost in pom.xml - #973
    • Error when executing empty batch using PreparedStatement - #977
    • Connection properties may lost - #978
    • ResultSet.getObject(int, Class) may return default value instead of null - #979
    • Redundant classes in shaded jar - #989
    • PreparedStatement.addBatch() timed out - #991
    • Set nullAsDefault to 2 may trigger IllegalArgumentException when handling timestamp with timezone - #999
  • New Feature

    • ClickHouseRequestManager is added for customizing query ID and session ID - #870
    • PreparedStatement.getParameterMetaData() is implemented - #972
    • Experimental transaction support - #975
    • Direct file upload and download - #1001
    • Failover across protocols
    • Repeat the same query until timed out, only when session is locked on server - set repeat_on_session_lock to false to turn it off
commits...
  • [3535d11]: Fix custom properties lost issue and add more tests (Zhichun Wu) #980
  • [142944b]: Remove hard-coded protocol (Zhichun Wu) #980
  • [844b2b8]: Stop throwing exception when executing empty batch (Zhichun Wu) #981
  • [70612d8]: Return null instead of default value for nullable types (Zhichun Wu) #982
  • [9f9ef67]: More tests to cover socket timeout and error during query/insert (Zhichun Wu) #983
  • [57d8d76]: Fixes number cast exception when Boolean[] is used in ClickHouseArrayValue (Kanthi Subramanian) #985
  • [82eb49a]: Skip failed test case (Zhichun Wu) #983
  • [890f602]: convert long[] to BigInteger[] - #984 (Zhichun Wu) #983
  • [24035e6]: Only run the test for http implementation (Zhichun Wu) #983
  • [702a638]: add test to ensure BigInteger[] can be converted back to long[] as well (Zhichun Wu) #983
  • [b468f1d]: Skip the tests for non-http implementation (Zhichun Wu) #983
  • [8cc6033]: Convert byte[] to Boolean[] and more tests (Zhichun Wu) #985
  • [1f633d6]: implement getParameterMetadata method in PreparedStatement (Zhichun Wu) #988
  • [8d6ce58]: Clean up pom files (Zhichun Wu) #992
  • [8b8415f]: Fix build failure (Zhichun Wu) #992
  • [52de029]: Fix incorrect error code when using HttpClient on 21.3 (Zhichun Wu) #992
  • [04b9c4b]: Fix slowness in performance mode and failover not working when protocol is unsupported (Zhichun Wu) #995
  • [9326785]: Fix format error when last argument is Throwable (Zhichun Wu) #995
  • [0780c7c]: Correct node config overloading and failover from one protocol to another (Zhichun Wu) #995
  • [6a56549]: Use named container in CI when using CLI client (Zhichun Wu) #995
  • [c010b4d]: Skip the failed case for now (Zhichun Wu) #995
  • [81168a2]: max_result_rows should never be applied to metadata queries (Zhichun Wu) #997
  • [9be9db2]: Add use_no_proxy option to avoid using proxy (Zhichun Wu) #998
  • [823b32a]: Merge branch 'develop' of github.com:zhicwu/clickhouse-jdbc into develop (Zhichun Wu) #998
  • [a95ea43]: Add missing config (Zhichun Wu) #998
  • [aeb5878]: Use unbounded queue for batch insert (Zhichun Wu) #1000
  • [6a11320]: Rename test and consider clearBatch (Zhichun Wu) #1000
  • [d1a97b1]: support direct upload/download in http client (Zhichun Wu) #1004
  • [4baa9c9]: Experimental transaction support (Zhichun Wu) #1008
  • [3c4b863]: Fix compile error on JDK 8 (Zhichun Wu) #1008
  • [de97ada]: Fix test failures on 22.7 (Zhichun Wu) #1008
  • [77f949e]: Fix Roaring64NavigableMap reading mismatches (wuzq) #1011
  • [86fe010]: improve implicit transaction support and error handling (Zhichun Wu) #1008
  • [9633bf8]: Improve error message as suggested in #1010 (Zhichun Wu) #1008
  • [d7a6f77]: Roll back unnecessary changes (Zhichun Wu) #1008
  • [33cf266]: Enable repeat_on_session_lock to test CI (Zhichun Wu) #1008
  • [1d68dcd]: Bump ClickHouse version and test again (Zhichun Wu) #1008
  • [439d345]: Update doc for build and testing (Zhichun Wu) #1018
  • [[537663b](https://github.com/ClickHouse/click...
Read more
Loading
maschfederico and bigdata2018 reacted with hooray emoji
2 people reacted

Release v0.3.2-patch10

26 Jun 16:43
@github-actions github-actions
aebad16
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

This is a patch release for bug fixes and experimental features.

  • Bug Fix

    • bump gRPC to 1.45.1 - #936
    • fix insert timeout error as mentioned in #943
    • fix issue of parsing slash in connection string - now you don't have to encode slash in query parameters
    • fix JDBC multi-value insert error - #920
    • fix JDBC metadata error on 21.6 and rename_response_column option no longer impact metadata queries - #938
  • New Feature

    • clickhouse-cli-client, a wrapper of ClickHouse native command-line, was added mainly for testing
    • load balancing and failover support - #956
    • new JDBC option nullAsDefault for handling null value in both insert and query - see comment at here
commits...
  • [da685b4]: update grpc to 1.45.1 (Nathan J Mehl) #936
  • [02938f6]: update third-party libraries (Nathan J Mehl) #936
  • [dd6c285]: Update test report when build failed (Zhichun Wu) #937
  • [0d872b3]: Bump version (Zhichun Wu) #937
  • [0e9b519]: Fix typo (Zhichun Wu) #939
  • [c22cdc1]: file-based data loading and dumping (Zhichun Wu) #939
  • [45c95d3]: Add CLI client (Zhichun Wu) #939
  • [92e075d]: Fix compile errors and test failures (Zhichun Wu) #939
  • [7db110f]: Fix #920 (Zhichun Wu) #940
  • [ba83399]: Support --secure and --query_id two options (Zhichun Wu) #941
  • [298a67d]: Add more formats (Zhichun Wu) #941
  • [5fc2c54]: Update request format according to parsed query (Zhichun Wu) #941
  • [5420317]: Skip one more test case for cli client (Zhichun Wu) #941
  • [afc63d9]: Update build script (Zhichun Wu) #941
  • [e495b45]: Enhance query to avoid 'Block structure mismatch' error on 21.6 (Zhichun Wu) #942
  • [0a171ad]: Never rename column when retrieving JDBC metadata (Zhichun Wu) #942
  • [ad5187b]: Bump jmh to latest (Zhichun Wu) #942
  • [e61607f]: Add workaround for maven timeout error (Zhichun Wu) #942
  • [fb126fc]: Fix timeout issues (Zhichun Wu) #943
  • [802ccf6]: Remove --update-snapshots option from build stage (Zhichun Wu) #943
  • [75ddd37]: Multi-endpoint support (#956) (Zhichun Wu) #956
  • [a1a617c]: Change default sslmode to strict for security reason (Zhichun Wu) #963
  • [3b48e07]: support custom writer for streaming (Zhichun Wu) #963
  • [5a1c464]: Bump version and update docs (Zhichun Wu) #963
  • [de865c3]: Fix deserialization issue in performance mode (Zhichun Wu) #968
  • [cfbfe13]: slightly improved lz4 performance (Zhichun Wu) #969
  • [e86d45e]: Use /tmp directory to transfer data from host to container (Zhichun Wu) #969
  • [b904a6b]: Disable testCustomLoad for cli-client (Zhichun Wu) #969
  • [6f82de2]: Fix table not found error (Zhichun Wu) #969
  • [aebad16]: Correct readme (Zhichun Wu)
Loading

Release v0.3.2-patch9

11 May 11:28
@github-actions github-actions
afa6cdd
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

This is a patch release mainly for fixing below issues:

  • fix issue parsing Tuple with names - #889 (which was not fully fixed in previous release)
  • fix unsupported format error when loading data in custom format - #909
  • fix precision issue when converting Float and Double to BigDecimal - #921
  • fix type conversion issue when dealing with nullable array elements - #924
  • fix OOM issue when loading lots of data through http interface - as mentioned in #861
  • fix broken query for retrieving client info properties

In addition, a few more changes(mainly for streaming) were merged from 0.3.3 branch, along with some new features:

  • new option rename_response_column for removing column prefix
  • new option request_chunk_size (defaults to 8192) for streaming - same option will be applied to gRPC client in the near future
  • new options request_buffering and response_buffering for customizing buffering mode - more details will be covered in #928
    • Resource-Efficient the default mode which consumes less CPU and memory
    • Performance uses more CPU and much more memory for better performance
    • Custom allows you to customize options like buffer_size, max_buffer_queue, buffer_queue_variation, use_blocking_queue etc. to balance performance and resource utilization
commits...
  • [2c7bf77]: Fix issue when parsing multi-word data type (Zhichun Wu) #901
  • [18708db]: Make ClickHouseEnum serializable (Zhichun Wu) #921
  • [ea44bc5]: Add methods for creating multiple values in one go (Zhichun Wu) #921
  • [192e7a7]: Fix #913 (Zhichun Wu) #921
  • [b41af34]: Fix build failure on 22.4 (Zhichun Wu) #922
  • [a849396]: Add new option for rename response column names (Zhichun Wu) #923
  • [4748b8a]: Enhance pipeline and introduce buffering mode (Zhichun Wu) #925
  • [1bf60d7]: Increase timeout and upload test reports when build failed (Zhichun Wu) #925
  • [262029f]: Add fixed capacity policy for testing (Zhichun Wu) #925
  • [8eb0fa7]: Fix write timeout error (Zhichun Wu) #925
  • [c3dbfe3]: Remove extra flush when closing piped output stream (Zhichun Wu) #926
  • [b0789f5]: Fix #909 (Zhichun Wu) #926
  • [fde782b]: Bump version (Zhichun Wu) #926
  • [bc7702e]: Fix JDK 8 compatibility issue (Zhichun Wu) #927
  • [ca39757]: Update buffer options for consistency and new option for adaptive queue (Zhichun Wu) #930
  • [eeece78]: Fix broken query for retrieving client properties (Zhichun Wu) #930
  • [66cb081]: Fix the double flush issue in deprecated class as well (Zhichun Wu) #930
  • [b135b29]: Add test case for #896 and 931 (Zhichun Wu) #932
Loading

Release v0.3.2-patch8

17 Apr 03:01
@github-actions github-actions
b76a2ee
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

This is a patch release mainly for fixing below issues:

  • fix issue with null in legacy JDBC driver json response deserializer - #879
  • fix issue set String as Enum value in new JDBC driver - #883
  • fix issue when deserializing array of DateTime with timezone - #886
    Note: for example Map(String,Array(Nullable(DateTime64(3,'Asia/Shanghai'))))
  • fix key type when deserializing map objects - #887
  • fix issue parsing Tuple with names - #889

In addition, more changes(mostly related to streaming) were merged from 0.3.3 branch along with some new features:

  • TLS authentication support - #523
  • support SimpleAggregateFunction data type
  • initial support of experimental data type JSON/Object('JSON')
    select tuple(1,[2,3], map('4', 5))::Tuple(Int32, Array(Int32), Map(LowCardinality(String), Int32))
    select tuple(1,[2,3], map('4', 5))::Tuple(i1 Int32, a1 Array(Int32), m1 Map(LowCardinality(String), Int32))

If you're using Java client, please be aware of below changes which may or may not cause compiling errors:

  • many methods changed to return ClickHouseInputStream/ClickHouseOutputStream instead of plain InputStream/OutputStream
  • ClickHouseLZ4InputStream and ClickHouseLZ4OutputStream are removed
commits...
  • [37d261b]: Use getSetting function to retrieve setting as suggested in #866 (Zhichun Wu) #869
  • [772d304]: Add default rounding mode as suggested in #864 (Zhichun Wu) #869
  • [30814bf]: switch to v0.3.3 (Zhichun Wu) #869
  • [de92f70]: Fix broken links (Zhichun Wu)
  • [7714fa8]: fixed issue with null in legacy driver's json response + test (debychkov) #879
  • [8e32c3b]: Fix key type when deserializing map objects (Jean-Noel Delavalade) #887
  • [ed47720]: Support Object/JSON and Tuple with names and types (Zhichun Wu) #890
  • [096fcf2]: Rename root element (Zhichun Wu) #890
  • [e86bd13]: Patch container before integration test (Zhichun Wu) #890
  • [35fad2d]: Fix build break caused by server compatibility issue (Zhichun Wu) #890
  • [72afe97]: Enhance data type handing and conversion between IPv4 and IPv6 (Zhichun Wu) #890
  • [4b651f7]: Fix test failure (Zhichun Wu) #890
  • [f782b77]: return string by default for enum column (Zhichun Wu) #890
  • [5cd7e0b]: Update dependency, doc and version (Zhichun Wu) #890
  • [c909574]: Clean up code and enhance enum types (Zhichun Wu) #890
  • [8448caa]: Update benchmarks (Zhichun Wu) #890
  • [4c5a101]: Merge stream changes from v0.3.3 branch along with TLS and exception handling improvement (Zhichun Wu) #890
  • [822673d]: Upgrade gRPC client (Zhichun Wu) #890
  • [67ff035]: Fix javadoc error on CI (Zhichun Wu) #890
  • [2d3779c]: Add workaround for 21.3 / 21.8 (Zhichun Wu) #890
  • [47af1ff]: stop testing grpc on 21.8 or early version (Zhichun Wu) #890
  • [2d785c0]: Stop testing TLS client authentication (Zhichun Wu) #890
  • [27dfc0c]: Skip default value test for gRPC (Zhichun Wu) #890
  • [b1706dc]: Fix test failures on 21.3 and 21.8 (Zhichun Wu) #890
  • [ffd81d7]: Enhance error handling and reduce temporary objects (Zhichun Wu) #890
  • [795dd30]: Benchmark against 22.3 (Zhichun Wu) #890
  • [14f856a]: Skip gRPC tests unless ClickHouse is 22.3+ (Zhichun Wu) #890
  • [0e2b532]: Skip a few more tests on 21.3 (Zhichun Wu) #890
  • [97ee2d1]: Update readme (Zhichun Wu) #899
  • [753e67f]: add session_id connection property and expose more change events (Zhichun Wu) #899
Loading

Release v0.3.2-patch7

14 Mar 12:07
@github-actions github-actions
0585961
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

This is a patch release for fixing below issues in both Java client and JDBC driver.

  • fix backward compatibility issue in legacy driver - #862
  • fix rounding error when converting Float/Double value to BigDecimal - #864
  • enable read-only support in JDBC driver - #866

In addition, there are a few more changes were merged from 0.3.3 branch:

  • ResultSet.unwrap() now supports ClickHouseRecord(current row) in addition to ClickHouseResponse(whole results)
  • ClickHouseColumn now provides estimated byte length, which can be used in read/write optimization
  • synchronous methods ClickHouseClient.executeAndWait() and Mutation.sendAndWait() for ease of use
commits...
  • [5143fe2]: added custom deserializer to legacy ClickHouseResponse (debychkov) #862
  • [bfa5698]: Add rounding mode for irrational BigDecimal numbers (volodya-lombrozo) #864
  • [2bd41ff]: remove empty spaces (volodya-lombrozo) #864
  • [5e8e016]: Add test and dedup code (Zhichun Wu) #862
  • [0b99f24]: Revert format changes (Zhichun Wu) #862
  • [253cc7c]: Add tests and change RoundingMode to DOWN for consistency (Zhichun Wu) #864
  • [48ee26e]: Enable read-only support (Zhichun Wu) #866
  • [55b71cb]: Bump version (Zhichun Wu) #867
  • [6977c17]: Merge a few more changes from 0.3.3 branch (Zhichun Wu) #867
Loading

Release v0.3.2-patch6

06 Mar 09:24
@github-actions github-actions
1d6257c
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

This is a patch release for fixing below issues in both Java client and JDBC driver.

  • enhance Bool support - #848
  • fix confusing error message metioned in #849
  • fix issue of writing Date32 value in RowBinary format
  • fix OffsetDateTime parsing error
  • fix NumberFormatExcption when parsing primitive array with null value
  • fix incorrect column type used in Connection.createArrayOf method
  • enhance PreparedStatement by treating insert into table(col1,col2,col3) values(?,?,?) as insert into table(col1,col2,col3)
commits...
  • [5e4354e]: fix links in README.md (XenoAmess) #852
  • [877e20c]: Enhance Bool support (Zhichun Wu) #853
  • [6cd6821]: Fix build break on JDK 8 (Zhichun Wu) #853
  • [3a28431]: Fix test failure on CH older than 22.1 (Zhichun Wu) #853
  • [b90c9c5]: Bump dependencies (Zhichun Wu) #854
  • [46e976e]: Bump version (Zhichun Wu) #855
  • [ec91d1f]: Fix issue of writing Date32 value (Zhichun Wu) #855
  • [f4a2fb3]: Fix confusing error message in #849 (Zhichun Wu) #855
  • [3558498]: Fix OffsetDateTime parsing error (Zhichun Wu) #855
  • [1a53839]: Fix NumberFormatExcption when parsing primitive array with null value (Zhichun Wu) #855
  • [09cd66e]: Treat "insert into table values(?,?)" as "insert into table" (Zhichun Wu) #855
  • [046c3f2]: Correct behavior of Connection.createArrayOf (Zhichun Wu) #856
Loading

Release v0.3.2-patch5

22 Feb 03:13
@github-actions github-actions
3d921d4
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

This is a patch release primarily for fixing below issues in JDBC driver. You don't have to upgrade if you're using Java client.

  • continueBatchOnError was ignored in Statement.executeBatch()
  • executeQuery() may return null
  • PreparedStatement.executeUpdate() did not work for insert statement using input function
  • Exception was swallowed in Statement.executeUpdate() - #836

In addition, exception handling is improved along with some minor changes:

  • support largeMaxRows, largeUpdateCount and executeLargeBatch
  • disable execute(*), executeQuery(*), execute*Update(*), and addBatch(*) methods in PreparedStatement to follow JDBC standard
  • throw BatchUpdateException instead of SQLException in execute*Batch method
  • empty batch is no longer allowed - addBatch is a required before execute*Batch
  • query in batch is not allowed, according to JDBC standard
  • mixed use of addBatch and execute / executeQuery / execute*Update is not allowed
  • ported some IO classes from 0.3.3 branch for slightly improved performance
commits...
  • [7439cef]: Bump version (Zhichun Wu) #837
  • [2782a3b]: Throw error in executeUpdate() and support continueBatchOnError in executeBatch() (Zhichun Wu) #837
  • [ea49d7f]: Add notice for upgrading (Zhichun Wu)
  • [6fdf02a]: Change max_result_rows from int to long (Zhichun Wu) #841
  • [8ff5cdf]: Add reusable empty ClickHouseResponse which is stateless (Zhichun Wu) #841
  • [ab09d64]: Enhance exception handling along with largeMaxRows and largeUpdateCount support (Zhichun Wu) #841
  • [fd4b47f]: Port IO classes from 0.3.3 (Zhichun Wu) #841
  • [105de13]: Validate JDK 11 HttpClient-based impementation as well (Zhichun Wu) #841
  • [db4e219]: Call HttpURLConnection.disconnect when closing response, and avoid double buffering (Zhichun Wu) #841
Loading

Release v0.3.2-patch4

06 Feb 12:58
@github-actions github-actions
95b4807
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

This is a patch release for fixing issues in both Java client and JDBC driver:

  • Incorrect value may return when converting large UInt64 value from String to Long - #828
  • Not able to create JDBC connection when database(defined in connection property or url) does not exist - #826
    Note: createDatabaseIfNotExist connection property was added as suggested in #605.
commits...
  • [1b89743]: Bump versions (Zhichun Wu) #829
  • [fd32335]: Fix issue #828 (Zhichun Wu) #829
  • [8b6a969]: Benchmark after release (Zhichun Wu) #829
  • [f8a79f3]: test jdbc driver using both http and grpc protocols (Zhichun Wu) #829
  • [a747d43]: Abstract test cases and consider grpc when testing jdbc driver (Zhichun Wu) #829
  • [ddc824c]: Remove database from context when initializing connection and add new connection property createDatabaseIfNotExist (Zhichun Wu) #829
  • [a17e4f9]: Fix build failures (Zhichun Wu) #829
  • [3268c2e]: Update grpc spec (Zhichun Wu) #829
  • [108d6ac]: Document new JDBC connection property (Zhichun Wu) #829
  • [2f10655]: Disable grpc test on 21.3 and 21.8 (Zhichun Wu) #829
  • [cd2dc12]: Convert string to primitive array (Zhichun Wu) #829
Loading

Release v0.3.2-patch3

25 Jan 13:32
@github-actions github-actions
1f83b42
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

This is a patch release primarily for fixing below issues in JDBC driver:

  • Incorrect COLUMN_SIZE, DECIMAL_DIGITS, and CHAR_OCTET_LENGTH were returned from ClickHouseDatabaseMetaData.getColumns() - #807
  • Failed to parse insert statement with CTE - #810
  • PreparedStatement.setBytes() and ResultSet.getBytes() do not work

In addition, please be aware of below changes related to ClickHouseDataType:

  • Enum is deprecated and it will be removed in 0.3.3 - it should be an alias of Enum8
  • More aliases like VARBINARY were added
commits...
  • [2631c0d]: Fix null DECIMAL_DIGITS and CHAR_OCTET_LENGTH (Zhichun Wu) #815
  • [2949c8a]: Fix test failure (Zhichun Wu) #815
  • [47bf6b0]: Consider CTE when parsing insert statement (Zhichun Wu) #817
  • [c9ea0a1]: More data type aliases, return scale for number and datetime, and better binary string support (Zhichun Wu) #815
  • [b11e807]: Improve binary data support (Zhichun Wu) #815
  • [241feb3]: Use null binary value instead of empty byte array (Zhichun Wu) #815
  • [671cd32]: Bump version to 0.3.2-patch3 (Zhichun Wu) #815
Loading

Release v0.3.2-patch2

16 Jan 12:01
@github-actions github-actions
fbe7d71
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

This is a patch release for fixing issue of getting table meta data from ClickHouse server older than 21.6 - see #804 for details.

Java client does not have the issue, so you can continue to use 0.3.2.

commits...
  • [3ec6042]: Fix version check for system.tables.comment column in DatabaseMetaData.getTables (Yuya Ebihara) #804
  • [1299db9]: Add integration test (Zhichun Wu) #804
Loading

AltStyle によって変換されたページ (->オリジナル) /