Skip to content

Commit

Permalink
SQLyog 13.1.1 GA
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhyawy committed Aug 30, 2018
1 parent 7bdcd0c commit b10b642
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/Version.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MAJOR_VERSION_INT 13
#define MINOR_VERSION_INT 0
#define UPDATE_VERSION_INT 0
#define RELEASE_VERSION_INT 0
#define MINOR_VERSION_INT 1
#define UPDATE_VERSION_INT 1
#define RELEASE_VERSION_INT 0
#define EXTRAINFO ""
5 changes: 5 additions & 0 deletions src/DataView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1045,6 +1045,9 @@ DataView::AddDataToQuery(MYSQL_ROW data, wyString &query, const wyChar* delimite
wyInt32 i, max;
wyString colname;

//from .ini file
m_backtick = AppendBackQuotes() == wyTrue ? "`" : "";

//if valid col is specified then we will add data for that column only
if(col >= 0)
{
Expand Down Expand Up @@ -1107,6 +1110,8 @@ DataView::AddDataToQueryJSON(MYSQL_ROW data, wyString &query, const wyChar* deli
wyInt32 i, max;
wyString colname;

//from .ini file
m_backtick = AppendBackQuotes() == wyTrue ? "`" : "";

//if valid col is specified then we will add data for that column only
if(col >= 0)
Expand Down

0 comments on commit b10b642

Please sign in to comment.