Skip to content
Snippets Groups Projects
Select Git revision
  • d857f73ece63aa7eed017d8f5ffbe53a522d49c1
  • openEuler-1.0-LTS default protected
  • OLK-5.10
  • openEuler-22.09
  • openEuler-22.03-LTS
  • openEuler-22.03-LTS-Ascend
  • master
  • openEuler-22.03-LTS-LoongArch-NW
  • openEuler-22.09-HCK
  • openEuler-20.03-LTS-SP3
  • openEuler-21.09
  • openEuler-21.03
  • openEuler-20.09
  • 4.19.90-2210.5.0
  • 5.10.0-123.0.0
  • 5.10.0-60.63.0
  • 5.10.0-60.62.0
  • 4.19.90-2210.4.0
  • 5.10.0-121.0.0
  • 5.10.0-60.61.0
  • 4.19.90-2210.3.0
  • 5.10.0-60.60.0
  • 5.10.0-120.0.0
  • 5.10.0-60.59.0
  • 5.10.0-119.0.0
  • 4.19.90-2210.2.0
  • 4.19.90-2210.1.0
  • 5.10.0-118.0.0
  • 5.10.0-106.19.0
  • 5.10.0-60.58.0
  • 4.19.90-2209.6.0
  • 5.10.0-106.18.0
  • 5.10.0-106.17.0
33 results

sdio.c

Blame
  • CreateUserExecutor.h 738 B
    /* Copyright (c) 2020 vesoft inc. All rights reserved.
     *
     * This source code is licensed under Apache 2.0 License,
     * attached with Common Clause Condition 1.0, found in the LICENSES directory.
     */
    
    #ifndef EXECUTOR_ADMIN_CREATEUSEREXECUTOR_H_
    #define EXECUTOR_ADMIN_CREATEUSEREXECUTOR_H_
    
    #include "executor/Executor.h"
    
    namespace nebula {
    namespace graph {
    
    class CreateUserExecutor final : public Executor {
    public:
        CreateUserExecutor(const PlanNode *node, QueryContext *qctx)
            : Executor("CreateUserExecutor", node, qctx) {}
    
        folly::Future<Status> execute() override;
    
    private:
        folly::Future<Status> createUser();
    };
    
    }   // namespace graph
    }   // namespace nebula
    
    #endif  // EXECUTOR_ADMIN_CREATEUSEREXECUTOR_H_