Skip to content
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

Implemented JDBC for IoTDB based on tables #14656

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c3245d1
增加RelationalMetadata入口+完善Relational的DataTypes显示
LJW21-02 Dec 27, 2024
230029a
实现Relational的Tables显示
LJW21-02 Dec 27, 2024
153c682
Tables的Properties和Data显示
LJW21-02 Jan 2, 2025
c32731c
优化Tables Data显示+Test Connection可以显示版本
LJW21-02 Jan 8, 2025
de03d94
Merge branch 'apache:master' into master
LJW21-02 Jan 8, 2025
3c89ccf
删除冗余文件
LJW21-02 Jan 8, 2025
ade76be
sync github and local code
LJW21-02 Jan 8, 2025
900d1da
增加文件头license
LJW21-02 Jan 13, 2025
ee4b3f1
Merge branch 'apache:master' into master
LJW21-02 Jan 13, 2025
8fb72a1
在parent pom修改maven-jar插件版本
LJW21-02 Jan 13, 2025
24e3f51
Merge branch 'master' of github.com:LJW21-02/iotdb
LJW21-02 Jan 13, 2025
716b784
修改文件结构+修复无tables报错+完善schema选择和SQLscript功能
LJW21-02 Jan 13, 2025
33f5790
Merge branch 'apache:master' into master
LJW21-02 Jan 13, 2025
2131541
Merge branch 'master' of github.com:LJW21-02/iotdb
LJW21-02 Jan 13, 2025
7f64eec
修改标识符头尾串
LJW21-02 Jan 21, 2025
af8176b
Merge branch 'apache:master' into master
LJW21-02 Jan 21, 2025
bd7bb79
Merge branch 'apache:master' into master
LJW21-02 Jan 22, 2025
35ee165
Update pom.xml
CritasWang Feb 5, 2025
19cf115
activation use jdk
CritasWang Feb 5, 2025
6c1f193
Update iotdb-client/jdbc/pom.xml
CritasWang Feb 5, 2025
f9c44fe
Merge branch 'apache:master' into master
LJW21-02 Feb 10, 2025
7783420
修改PR意见
LJW21-02 Feb 11, 2025
4aa7482
Merge branch 'apache:master' into master
LJW21-02 Feb 11, 2025
7f12cfd
修改getTimeDateFunctions
LJW21-02 Feb 12, 2025
f9baf31
Merge branch 'apache:master' into master
LJW21-02 Feb 12, 2025
91ab9aa
删除冗余注释
LJW21-02 Feb 12, 2025
ae3fd39
去除列属性显示
LJW21-02 Feb 12, 2025
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
8 changes: 8 additions & 0 deletions iotdb-client/jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<manifestEntries>
<Implementation-Version>${project.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
Expand Down Expand Up @@ -286,6 +289,11 @@
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
<executions>
<execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private Constant() {}

public static final String GLOBAL_DB_NAME = "IoTDB";

static final String METHOD_NOT_SUPPORTED = "Method not supported";
public static final String METHOD_NOT_SUPPORTED = "Method not supported";
static final String PARAMETER_NOT_NULL = "The parameter cannot be null";
static final String PARAMETER_SUPPORTED =
"Parameter only supports BOOLEAN,INT32,INT64,FLOAT,DOUBLE,TEXT data type";
Expand Down
Loading
Loading