fix issue #541
This commit is contained in:
parent
8318a60902
commit
67c646b10d
|
@ -33,7 +33,11 @@
|
||||||
#include "tutil.h"
|
#include "tutil.h"
|
||||||
|
|
||||||
/**************** Global variables ****************/
|
/**************** Global variables ****************/
|
||||||
char CLIENT_VERSION[] = "Welcome to the TDengine shell, client version:%s ";
|
#ifdef WINDOWS
|
||||||
|
char CLIENT_VERSION[] = "Welcome to the TDengine shell from windows, client version:%s, ";
|
||||||
|
#else
|
||||||
|
char CLIENT_VERSION[] = "Welcome to the TDengine shell from linux, client version:%s, ";
|
||||||
|
#endif
|
||||||
char SERVER_VERSION[] = "server version:%s\nCopyright (c) 2017 by TAOS Data, Inc. All rights reserved.\n\n";
|
char SERVER_VERSION[] = "server version:%s\nCopyright (c) 2017 by TAOS Data, Inc. All rights reserved.\n\n";
|
||||||
char PROMPT_HEADER[] = "taos> ";
|
char PROMPT_HEADER[] = "taos> ";
|
||||||
char CONTINUE_PROMPT[] = " -> ";
|
char CONTINUE_PROMPT[] = " -> ";
|
||||||
|
|
Loading…
Reference in New Issue