Quicksql
Quicksql copied to clipboard
A Flexible, Fast, Federated(3F) SQL Analysis Middleware for Multiple Data Sources
Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
hive metadata is stored in mysql. Import the metadata as follows: ./metadata-extract.sh -p "{\"jdbcDriver\": \"com.mysql.jdbc.Driver\", \"jdbcUrl\": \"jdbc:mysql://127.0.0.1:3306/metastore\", \"jdbcUser\": \"test\",\"jdbcPassword\": \"test\",\"dbName\": \"test\"}" -d "hive" -r "student_ext" The import process can be...
maven编译的时候显示如下错误: ``` [ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:3.1.1:analyze-only (analyze) on project qsql-calcite-analysis: Dependency problems found -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run...
在[文档](https://quicksql.readthedocs.io/en/latest/deployment/deployment/)中看到,当前不支持Mongodb,在项目中的Lib目录也没有mongo的driver,请问大概什么时候支持Mongodb?
1、元数据库如果直接使用hive本省的元数据,DBS 表中存在 DB_TYPE 字段与hive元数据库冲突,COLUMNS 表在hive元数据库中是COLUMNS_V2 2、配置信息是否有样例可供参考
各位大佬: 使用ES作为存储时,是否支持row_number之类的窗口函数?
When I execute CsvScanExample.java in idea,throw exception “Object 'custom_name_depts_0' not found ”
## Versions 0.7.0 ## Describe the bug CsvScanExample.java: `package com.qihoo.qsql; import com.qihoo.qsql.api.SqlRunner; import com.qihoo.qsql.api.SqlRunner.Builder.RunnerType; import com.qihoo.qsql.env.RuntimeEnv; import java.io.IOException; public class CsvScanExample { /** * If you want to execute in...
我采用java代码用客户端向服务端发出jdbc查询请求但是不能返回数据。同样的语句用命令行确可以实现查询es请问是我哪里配置错误了吗?(已经同步过元数据) 代码如下: `public static void main(String[] args) throws ClassNotFoundException, SQLException { Class.forName("com.qihoo.qsql.client.Driver"); //注入Drvier Properties properties = new Properties(); properties.setProperty("runner","jdbc"); String url = "jdbc:quicksql:url=http://10.121.8.4:5888"; Connection connection = DriverManager.getConnection(url,properties); Statement pS =...
**Motivation:** For #183 Support array data type
**Motivation:** #177 This feature need to support EXPLODE() function can convert array type row to a new column(or map type data to 2 column) for example : | c1 |...