~drizzle-trunk/libdrizzle/jenkins-Libdrizzle-29

« back to all changes in this revision

Viewing changes to tests/unit/insert_id.c

  • Committer: Andrew Hutchings
  • Date: 2012-12-21 08:10:08 UTC
  • mfrom: (43.2.14 5.0)
  • Revision ID: andrew@linuxjedi.co.uk-20121221081008-nwvhyxhn1s9omsn0
Merge 5.0 changes into 5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
#include <stdio.h>
42
42
#include <stdlib.h>
43
43
 
 
44
#ifndef EXIT_SKIP
 
45
# define EXIT_SKIP 77
 
46
#endif
 
47
 
44
48
int main(int argc, char *argv[])
45
49
{
46
50
  (void) argc;
66
70
  if (ret != DRIZZLE_RETURN_OK)
67
71
  {
68
72
    printf("Drizzle connection failure\n");
69
 
    return EXIT_FAILURE;
 
73
    return EXIT_SKIP;
70
74
  }
71
75
 
72
76
  drizzle_query_str(con, "create table libdrizzle.t1 (a int primary key auto_increment, b int)", &ret);