table 没有找到 apache 方解石
table not found with apache calcite
我正在尝试用方解石做一些基本的事情来理解这个框架。我已经设置了一个应该从 2 json 文件中读取的简单示例。我的模型看起来像
{
version: '1.0',
defaultSchema: 'PEOPLE',
schemas: [
{
name: 'PEOPLE',
type: 'custom',
factory: 'demo.JsonSchemaFactory',
operand: {
directory: '/..../calcite-json/src/test/resources/files'
}
}
]
}
在我的测试中,似乎模型加载正常,因为当我提取数据库元数据信息时,我可以看到我的文件正在作为 table 在 PEOPLE 模式下加载。但是在那句话之后,我试图从那个 table 做一个 select *
,我得到一个错误,说 table 没有找到。
> --
null
PEOPLE
a
TABLE
-->
Jun 29, 2015 8:53:30 AM org.apache.calcite.sql.validate.SqlValidatorException <init>
SEVERE: org.apache.calcite.sql.validate.SqlValidatorException: Table 'A' not found
Jun 29, 2015 8:53:30 AM org.apache.calcite.runtime.CalciteException <init>
SEVERE: org.apache.calcite.runtime.CalciteContextException: At line 1, column 26: Table 'A' not found
输出中的第一行显示来自数据库元数据的 tables“-- null PEOPLE a TABLE -->”。这表明 table "a" 存在于模式 "people" 下并且类型为 "table".
我的测试代码是这样的
@Test
public void testModel() throws SQLException {
Properties props = new Properties();
props.put("model", getPath("/model.json"));
System.out.println("model = " + props.get("model"));
Connection conn = DriverManager.getConnection("jdbc:calcite:", props);
DatabaseMetaData md = conn.getMetaData();
ResultSet tables = md.getTables(null, "PEOPLE", "%", null);
while (tables.next()) {
System.out.println("--");
System.out.println(tables.getString(1));
System.out.println(tables.getString(2));
System.out.println(tables.getString(3));
System.out.println(tables.getString(4));
System.out.println("-->");
}
Statement stat = conn.createStatement();
stat.execute("select _MAP['name'] from a");
stat.close();
conn.close();
}
为什么我无法在加载的 table 上执行 select?
我注意到的另一件有趣的事情是,对于 1 个文件,Schema.getTableMap
被调用了 4 次。
可以找到项目的完整代码on github
问题是区分大小写。因为您没有将 table 名称括在双引号中,所以 Calcite 的 SQL 解析器将其转换为大写。因为该文件名为 'a.json',所以 table 也称为 'a',而您的查询正在查找名为 'A'.
的 table
解决方案是按如下方式编写您的查询:
select _MAP['name'] from "a"
这变成:
stat.execute("select _MAP['name'] from \"a\"");
当您将其嵌入 Java 时。
我正在尝试用方解石做一些基本的事情来理解这个框架。我已经设置了一个应该从 2 json 文件中读取的简单示例。我的模型看起来像
{
version: '1.0',
defaultSchema: 'PEOPLE',
schemas: [
{
name: 'PEOPLE',
type: 'custom',
factory: 'demo.JsonSchemaFactory',
operand: {
directory: '/..../calcite-json/src/test/resources/files'
}
}
]
}
在我的测试中,似乎模型加载正常,因为当我提取数据库元数据信息时,我可以看到我的文件正在作为 table 在 PEOPLE 模式下加载。但是在那句话之后,我试图从那个 table 做一个 select *
,我得到一个错误,说 table 没有找到。
> -- null PEOPLE a TABLE --> Jun 29, 2015 8:53:30 AM org.apache.calcite.sql.validate.SqlValidatorException <init> SEVERE: org.apache.calcite.sql.validate.SqlValidatorException: Table 'A' not found Jun 29, 2015 8:53:30 AM org.apache.calcite.runtime.CalciteException <init> SEVERE: org.apache.calcite.runtime.CalciteContextException: At line 1, column 26: Table 'A' not found
输出中的第一行显示来自数据库元数据的 tables“-- null PEOPLE a TABLE -->”。这表明 table "a" 存在于模式 "people" 下并且类型为 "table".
我的测试代码是这样的
@Test
public void testModel() throws SQLException {
Properties props = new Properties();
props.put("model", getPath("/model.json"));
System.out.println("model = " + props.get("model"));
Connection conn = DriverManager.getConnection("jdbc:calcite:", props);
DatabaseMetaData md = conn.getMetaData();
ResultSet tables = md.getTables(null, "PEOPLE", "%", null);
while (tables.next()) {
System.out.println("--");
System.out.println(tables.getString(1));
System.out.println(tables.getString(2));
System.out.println(tables.getString(3));
System.out.println(tables.getString(4));
System.out.println("-->");
}
Statement stat = conn.createStatement();
stat.execute("select _MAP['name'] from a");
stat.close();
conn.close();
}
为什么我无法在加载的 table 上执行 select?
我注意到的另一件有趣的事情是,对于 1 个文件,Schema.getTableMap
被调用了 4 次。
可以找到项目的完整代码on github
问题是区分大小写。因为您没有将 table 名称括在双引号中,所以 Calcite 的 SQL 解析器将其转换为大写。因为该文件名为 'a.json',所以 table 也称为 'a',而您的查询正在查找名为 'A'.
的 table解决方案是按如下方式编写您的查询:
select _MAP['name'] from "a"
这变成:
stat.execute("select _MAP['name'] from \"a\"");
当您将其嵌入 Java 时。