Results 5 issues of zllr

当使用a标签当锚点时,其href属性值为undefined。此时会导致js报错而缺失目录和相关功能 ![image](https://user-images.githubusercontent.com/32292315/136648839-2f017be4-b407-4478-b888-5bf5594364c1.png)

## 现状 目前`com.taosdata.jdbc.TSDBJNIConnector` 类强制使用`System.loadLibrary`方法类加载jni动态库,代码如下: ```java /** * JNI connector */ public class TSDBJNIConnector { private static final Object LOCK = new Object(); private static volatile boolean isInitialized; private final TaosInfo...

目前有`LAST_ROW`函数,但此函数会无视结果集时间戳排序,只取时间戳最大的行。 既然有`LAST_ROW`函数,则应该需要有对应的`FIRST_ROW`才会更完善

enhancement

### Is your feature request related to a problem? Please describe. My device cannot play any sound due to a malfunction. I am now using it as a streaming client,...

enhancement

因数据库列名不区分大小写,使用大写的列名寻找数据会导致找不到列 问题复现步骤: 1. 创建表 ```sql create table column_name_test (ts timestamp,col NCHAR (64)) tags (t NCHAR (64)) ``` 2. 写入数据 ```sql insert into data_1 using column_name_test tags ('test tag') values ('2025-01-13...