Skip to content

Commit

Permalink
fixed mysql version string to start with number; fixed #2095
Browse files Browse the repository at this point in the history
  • Loading branch information
tomatolog committed May 4, 2021
1 parent 0612ba0 commit 96d61d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/searchd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18839,7 +18839,7 @@ static void InitBanner()
sColumnar.SetSprintf ( " (columnar %s)", szColumnarVer );

g_sBanner.SetSprintf ( "%s%s%s", szMANTICORE_NAME, sColumnar.cstr(), szMANTICORE_BANNER_TEXT );
g_sMySQLVersion.SetSprintf ( "%s%s", szMANTICORE_NAME, sColumnar.cstr() );
g_sMySQLVersion.SetSprintf ( "%s%s", szMANTICORE_VERSION, sColumnar.cstr() );
g_sStatusVersion.SetSprintf ( "%s%s", szMANTICORE_VERSION, sColumnar.cstr() );
}

Expand Down

0 comments on commit 96d61d8

Please sign in to comment.