-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented the integration of cypher into the GQL ASTNode system, a…
…nd fixed bugs in the GQL match feature (#533) * add cypher test compare result * implement query * implement match query * implement standalone call and create * cpplint * cpplint * cpplint * fix double format * update * update * implement set * implement gql set * fix test case * move dml * cpplint * cpplint * remove ddl header * fix compile error * follow comment * comments * comments * comments * cpplint * comments * comments * comments * comments * comments * fix bug * fix bug * remove incorrect comments * fix bug * comments --------- Co-authored-by: Shipeng Qi <[email protected]> Co-authored-by: Ke Huang <[email protected]>
- Loading branch information
1 parent
ae51027
commit 2c769ad
Showing
96 changed files
with
9,691 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
deps/geax-front-end/include/geax-front-end/ast/expr/BSquare.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* Copyright 2023 AntGroup CO., Ltd. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
*/ | ||
|
||
#ifndef GEAXFRONTEND_AST_EXPR_BSQUARE_H_ | ||
#define GEAXFRONTEND_AST_EXPR_BSQUARE_H_ | ||
|
||
#include "geax-front-end/ast/expr/BinaryOp.h" | ||
|
||
namespace geax { | ||
namespace frontend { | ||
|
||
class BSquare : public BinaryOp { | ||
public: | ||
BSquare() : BinaryOp(AstNodeType::kBSquare) {} | ||
~BSquare() = default; | ||
|
||
std::any accept(AstNodeVisitor& visitor) override { return visitor.visit(this); } | ||
}; // class BSquare | ||
|
||
} // namespace frontend | ||
} // namespace geax | ||
|
||
#endif // GEAXFRONTEND_AST_EXPR_BSQUARE_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.