query.cpp 392 B

1234567891011121314151617181920212223242526
  1. #include "query.h"
  2. namespace NClickHouse {
  3. TQuery::TQuery() {
  4. }
  5. TQuery::TQuery(const char* query)
  6. : Query_(query)
  7. {
  8. }
  9. TQuery::TQuery(const TString& query)
  10. : Query_(query)
  11. {
  12. }
  13. TQuery::TQuery(const TString& query, const TString& query_id)
  14. : Query_(query)
  15. , QueryId_(query_id)
  16. {
  17. }
  18. TQuery::~TQuery() {
  19. }
  20. }