~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_lex.h

  • Committer: Brian Aker
  • Date: 2008-07-13 22:21:51 UTC
  • Revision ID: brian@tangent.org-20080713222151-fv2tcpbsc829j2oc
Ulonglong to uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
  char *host, *user, *password, *log_file_name;
143
143
  uint port, connect_retry;
144
144
  float heartbeat_period;
145
 
  ulonglong pos;
 
145
  uint64_t pos;
146
146
  ulong server_id;
147
147
  /*
148
148
    Enum is used for making it possible to detect if the user
343
343
    *link_next, **link_prev;          /* list of whole SELECT_LEX */
344
344
public:
345
345
 
346
 
  ulonglong options;
 
346
  uint64_t options;
347
347
 
348
348
  /*
349
349
    result of this query can't be cached, bit field, can be :
422
422
  TABLE *table; /* temporary table using for appending UNION results */
423
423
 
424
424
  select_result *result;
425
 
  ulonglong found_rows_for_union;
 
425
  uint64_t found_rows_for_union;
426
426
  bool saved_error;
427
427
 
428
428
public: