Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
d99fbcb
fix: typo in CreatePipe
Young-Leo Dec 25, 2025
b065532
feat(jdbc): implement PreparedStatement
Young-Leo Jan 14, 2026
8c5c238
refactor: simplify PreparedStatement parameter serialization AND move…
Young-Leo Jan 18, 2026
c7e2ec0
Restore the original version of Coordinate
Young-Leo Jan 18, 2026
c8911df
Merge branch 'master' of https://github.com/apache/iotdb into ly/prep…
Young-Leo Jan 18, 2026
45d563f
Refactor executePreparedStatement to reuse Coordinator's Execute AST …
Young-Leo Jan 18, 2026
2eb4569
refactor(prepared-statement): extract helper for register/unregister …
Young-Leo Jan 18, 2026
031fcd4
use StatementId instead of UUID for prepared statement name
Young-Leo Jan 18, 2026
7b3ec21
Add unit tests for PreparedParameterSerializer
Young-Leo Jan 19, 2026
e9d97a9
fix(jdbc): Changed `setResultForPrepared` to use V2 format to fix Pre…
Young-Leo Jan 20, 2026
fca4be1
add IT of JDBC prepared statement
Young-Leo Jan 22, 2026
f6ac1e2
chore: simplify comments
Young-Leo Jan 22, 2026
3966ab1
Replace custom serialization logic with ReadWriteIOUtils methods
Young-Leo Feb 2, 2026
3263786
refactor: reuse executeStatementInternal for PreparedStatement
Young-Leo Feb 2, 2026
e53cfcf
test(jdbc): add PreparedStatement test for all TsDataType
Young-Leo Feb 2, 2026
0bdd12a
support with clause & fix JDBCIT bugs
Young-Leo Feb 3, 2026
663321b
refactor(rpc): introduce NativeStatementRequest interface for execute…
Young-Leo Feb 3, 2026
909c84a
extract bytesToHex to PreparedParameterSerde and optimize serialization
Young-Leo Feb 3, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

@RunWith(IoTDBTestRunner.class)
@Category({TableLocalStandaloneIT.class, TableClusterIT.class})
public class IoTDBPreparedStatementIT {
public class IoTDBTablePreparedStatementIT {
private static final String DATABASE_NAME = "test";
private static final String[] sqls =
new String[] {
Expand Down
Loading
Loading