Skip to content

Commit

Permalink
Update main.cc
Browse files Browse the repository at this point in the history
Signed-off-by: Lorenzo Mangani <[email protected]>
  • Loading branch information
lmangani authored Jun 9, 2023
1 parent 068421c commit a122296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/c++/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const char* mydatabase = std::getenv("DATABASE_NAME");
DEFINE_string(host, myhost , "The host of the Flight SQL server.");
DEFINE_string(token, mytoken, "The token for InfluxDB");
DEFINE_string(database, mydatabase, "The database to query from");
DEFINE_int32(port, 443, "The port of the Flight SQL server.");
DEFINE_string(query, "SELECT * FROM 'measurementName'", "The query to execute.");
DEFINE_int32(port, 8082, "The port of the Flight SQL server.");
DEFINE_string(query, "SELECT * FROM cpu LIMIT 1", "The query to execute.");


arrow::Status Main() {
Expand Down

0 comments on commit a122296

Please sign in to comment.