Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 692674
Collapse All | Expand All

(-)ParaView-v5.6.1-orig/VTK/IO/MySQL/vtkMySQLDatabase.cxx (-1 / +1 lines)
Lines 146-152 bool vtkMySQLDatabase::Open( const char* Link Here
146
146
147
  if ( this->Reconnect )
147
  if ( this->Reconnect )
148
  {
148
  {
149
    my_bool recon = true;
149
    bool recon = true;
150
    mysql_options( &this->Private->NullConnection, MYSQL_OPT_RECONNECT, &recon );
150
    mysql_options( &this->Private->NullConnection, MYSQL_OPT_RECONNECT, &recon );
151
  }
151
  }
152
152
(-)ParaView-v5.6.1-orig/VTK/IO/MySQL/vtkMySQLQuery.cxx (-3 / +3 lines)
Lines 103-115 public: Link Here
103
  }
103
  }
104
104
105
public:
105
public:
106
  my_bool           IsNull;      // Is this parameter nullptr?
106
  bool              IsNull;      // Is this parameter nullptr?
107
  my_bool           IsUnsigned;  // For integer types, is it unsigned?
107
  bool              IsUnsigned;  // For integer types, is it unsigned?
108
  char             *Data;        // Buffer holding actual data
108
  char             *Data;        // Buffer holding actual data
109
  unsigned long     BufferSize;  // Buffer size
109
  unsigned long     BufferSize;  // Buffer size
110
  unsigned long     DataLength;  // Size of the data in the buffer (must
110
  unsigned long     DataLength;  // Size of the data in the buffer (must
111
                              // be less than or equal to BufferSize)
111
                              // be less than or equal to BufferSize)
112
  my_bool           HasError;    // for the server to report truncation
112
  bool              HasError;    // for the server to report truncation
113
  enum enum_field_types  DataType;    // MySQL data type for the contained data
113
  enum enum_field_types  DataType;    // MySQL data type for the contained data
114
};
114
};
115
115

Return to bug 692674