~ubuntu-branches/debian/stretch/mydumper/stretch

« back to all changes in this revision

Viewing changes to server_detect.h

  • Committer: Package Import Robot
  • Author(s): Mateusz Kijowski
  • Date: 2014-03-20 01:17:43 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140320011743-gd2ujpc0pqzpc6jq
Tags: 0.6.1-1
* updated standards version
* move sphinxdoc depends to recommends (Closes: #730443)
* homepage updated (Closes: #714921)
* explicitly tell CMAKE to link libm
  patch 0003-explicitly-link-libm.patch
* Imported Upstream version 0.6.1 (Closes: #735851) (LP: #1270330)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#define DETECT_MYSQL_REGEX "^([3-9]\\.[0-9]+\\.[0-9]+)"
23
23
#define DETECT_DRIZZLE_REGEX "^(20[0-9]{2}\\.(0[1-9]|1[012])\\.[0-9]+)"
 
24
#define DETECT_MARIADB_REGEX "^([0-9]{1,2}\\.[0-9]+\\.[0-9]+)"
24
25
 
25
26
enum server_type { SERVER_TYPE_UNKNOWN, SERVER_TYPE_MYSQL, SERVER_TYPE_DRIZZLE };
26
27
int detect_server(MYSQL *conn);