You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ne...@apache.org on 2021/08/13 09:21:18 UTC

[iotdb] branch rel/0.12 updated (62377da -> ea8546e)

This is an automated email from the ASF dual-hosted git repository.

neuyilan pushed a change to branch rel/0.12
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


    from 62377da  [To rel/0.12] Fix compaction recover loses data (#3733)
     add ea8546e  [To rel/0.12][IOTDB-1536]Support fuzzy query (#3734)

No new revisions were added by this update.

Summary of changes:
 RELEASE_NOTES.md                                   |   1 +
 .../antlr4/org/apache/iotdb/db/qp/sql/SqlBase.g4   |   1 +
 docs/UserGuide/Appendix/SQL-Reference.md           |  18 +++
 docs/zh/UserGuide/Appendix/SQL-Reference.md        |  17 +++
 .../org/apache/iotdb/db/qp/logical/Operator.java   |   3 +-
 .../iotdb/db/qp/logical/crud/LikeOperator.java     | 131 +++++++++++++++++
 .../apache/iotdb/db/qp/sql/IoTDBSqlVisitor.java    |  14 +-
 .../iotdb/db/integration/IoTDBQueryDemoIT.java     | 158 +++++++++++++++++++++
 .../iotdb/db/qp/physical/PhysicalPlanTest.java     |  17 +++
 .../iotdb/tsfile/read/filter/ValueFilter.java      |  43 ++++++
 .../read/filter/factory/FilterSerializeId.java     |   3 +-
 .../read/filter/operator/{In.java => Like.java}    |  65 ++++-----
 12 files changed, 430 insertions(+), 41 deletions(-)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/qp/logical/crud/LikeOperator.java
 copy tsfile/src/main/java/org/apache/iotdb/tsfile/read/filter/operator/{In.java => Like.java} (62%)