Libing Chen

Results 207 comments of Libing Chen

BTW, the last Apache Hive JDBC Snapshot uses empty string instead of exception thrown. ```java public String getSchemaName(int column) throws SQLException { String tableName = getTableName(column); int index = tableName.lastIndexOf(DOT);...

Yes, it's hard to implement Macro support for dynamic tables, and now I use record cast for query. ```java @Test public void testJooqMacro() { DSLContext dslContext = new DefaultDSLContext(conn, SQLDialect.DUCKDB);...

@MnlPhlp It's from here, and Volta can not find package name. https://github.com/volta-cli/volta/blob/a7384fa4fc7a0eca961032da4d962d94218b5868/crates/volta-core/src/tool/package/mod.rs#L168 I think last arg could be package name for `npm install -g xxx` if package not found from...

According to https://github.com/search?q=path%3A**%2Fjustfile&type=code&ref=advsearch Most Justfiles use shell as primary language. For shell, I think that it should be allowed developers to choose `${just_variable_name}` style according to use cases. For IDEs,...

@laniakea64 still some hard. IDE/Editor has its incremental AST parser based on Document object from editor. If you change or input some characters in shell script, and it's very expensive...

@casey any idea about UX for shell script?

@SHIMURA0 Please refer https://github.com/duckdb/ducklake/tree/main/examples/minio-demo-server It works well on my laptop with MinIO. Please create a `demo-ducklake-minio-bucket` on the MinIO, and execute: ``` $ duckdb --cmd "create secret (type s3, key_id...