myreplicator 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +40 -0
- data/app/assets/javascripts/myreplicator/application.js +21 -0
- data/app/assets/javascripts/myreplicator/chosen.jquery.min.js +10 -0
- data/app/assets/javascripts/myreplicator/cronwtf.js +156 -0
- data/app/assets/javascripts/myreplicator/exports.js +2 -0
- data/app/assets/javascripts/myreplicator/jquery.tipTip.minified.js +21 -0
- data/app/assets/stylesheets/myreplicator/FrancoisOne.ttf +0 -0
- data/app/assets/stylesheets/myreplicator/application.css +544 -0
- data/app/assets/stylesheets/myreplicator/asc-white.gif +0 -0
- data/app/assets/stylesheets/myreplicator/bg.gif +0 -0
- data/app/assets/stylesheets/myreplicator/bg.png +0 -0
- data/app/assets/stylesheets/myreplicator/chosen-sprite.png +0 -0
- data/app/assets/stylesheets/myreplicator/chosen.css +398 -0
- data/app/assets/stylesheets/myreplicator/clipboard-list.png +0 -0
- data/app/assets/stylesheets/myreplicator/cross.png +0 -0
- data/app/assets/stylesheets/myreplicator/desc-white.gif +0 -0
- data/app/assets/stylesheets/myreplicator/exports.css +4 -0
- data/app/assets/stylesheets/myreplicator/gear.png +0 -0
- data/app/assets/stylesheets/myreplicator/plus.png +0 -0
- data/app/assets/stylesheets/myreplicator/status-busy.png +0 -0
- data/app/assets/stylesheets/myreplicator/status.png +0 -0
- data/app/assets/stylesheets/myreplicator/tipTip.css +113 -0
- data/app/assets/stylesheets/myreplicator/websymbols-regular-webfont.eot +0 -0
- data/app/assets/stylesheets/myreplicator/websymbols-regular-webfont.svg +108 -0
- data/app/assets/stylesheets/myreplicator/websymbols-regular-webfont.ttf +0 -0
- data/app/assets/stylesheets/myreplicator/websymbols-regular-webfont.woff +0 -0
- data/app/assets/stylesheets/scaffold.css +56 -0
- data/app/controllers/myreplicator/application_controller.rb +4 -0
- data/app/controllers/myreplicator/exports_controller.rb +106 -0
- data/app/controllers/myreplicator/home_controller.rb +23 -0
- data/app/helpers/myreplicator/application_helper.rb +12 -0
- data/app/helpers/myreplicator/exports_helper.rb +4 -0
- data/app/models/myreplicator/export.rb +121 -0
- data/app/views/layouts/myreplicator/application.html.erb +24 -0
- data/app/views/myreplicator/exports/_form.html.erb +117 -0
- data/app/views/myreplicator/exports/edit.html.erb +2 -0
- data/app/views/myreplicator/exports/index.html.erb +56 -0
- data/app/views/myreplicator/exports/new.html.erb +2 -0
- data/app/views/myreplicator/exports/show.html.erb +28 -0
- data/app/views/myreplicator/home/_home_menu.erb +5 -0
- data/app/views/myreplicator/home/errors.html.erb +10 -0
- data/app/views/myreplicator/home/index.html.erb +58 -0
- data/config/routes.rb +6 -0
- data/db/migrate/20121025191622_create_myreplicator_exports.rb +35 -0
- data/lib/configuration.rb +25 -0
- data/lib/exporter/export_metadata.rb +198 -0
- data/lib/exporter/export_metadata.rb~ +9 -0
- data/lib/exporter/mysql_exporter.rb +187 -0
- data/lib/exporter/sql_commands.rb +126 -0
- data/lib/exporter/sql_commands.rb~ +5 -0
- data/lib/exporter.rb +3 -0
- data/lib/loader/import_sql.rb +91 -0
- data/lib/loader/import_sql.rb~ +27 -0
- data/lib/loader/loader.rb +122 -0
- data/lib/loader/loader.rb~ +4 -0
- data/lib/myreplicator/engine.rb +5 -0
- data/lib/myreplicator/version.rb +3 -0
- data/lib/myreplicator.rb +34 -0
- data/lib/tasks/myreplicator_tasks.rake +4 -0
- data/lib/transporter/parallelizer.rb +78 -0
- data/lib/transporter/transporter.rb +80 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +42 -0
- data/test/dummy/config/database.yml.sample +47 -0
- data/test/dummy/config/database.yml.sample~ +26 -0
- data/test/dummy/config/database.yml~ +35 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/myreplicator.yml +22 -0
- data/test/dummy/config/myreplicator.yml.sample +23 -0
- data/test/dummy/config/myreplicator.yml~ +21 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/migrate/20121101005152_sample_data.rb +24 -0
- data/test/dummy/db/migrate/20121115194022_create_myreplicator_exports.myreplicator.rb +36 -0
- data/test/dummy/db/schema.rb +45 -0
- data/test/dummy/db/seeds.rb +13 -0
- data/test/dummy/db/seeds.rb~ +1 -0
- data/test/dummy/log/development.log +1364 -0
- data/test/dummy/log/test.log +49 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/myreplicator_exports.yml +0 -0
- data/test/dummy/tmp/cache/assets/C2E/D00/sprockets%2F667019818351638709494c01bddb5f68 +0 -0
- data/test/dummy/tmp/cache/assets/C83/BA0/sprockets%2F701a6339a558e5af28f150c161f43878 +0 -0
- data/test/dummy/tmp/cache/assets/C8B/150/sprockets%2F37163d05e55ad0b31b602ac5330412e3 +0 -0
- data/test/dummy/tmp/cache/assets/CBF/800/sprockets%2F00142a873933017aaa760316d0e2dcea +0 -0
- data/test/dummy/tmp/cache/assets/CC5/870/sprockets%2F4e91734f6f02a779d39f8272f627dd24 +0 -0
- data/test/dummy/tmp/cache/assets/CC9/1C0/sprockets%2Fa7a2b5a56180e1b21f783a9b30c03167 +0 -0
- data/test/dummy/tmp/cache/assets/CD5/B90/sprockets%2Fc999d13a6a21113981c0d820e8043bdf +0 -0
- data/test/dummy/tmp/cache/assets/CD7/030/sprockets%2F9ba4859590582b8b72a650b2b00b6cd2 +0 -0
- data/test/dummy/tmp/cache/assets/CDE/780/sprockets%2F6982ce9303b4e69c26f2a1a246a180e7 +0 -0
- data/test/dummy/tmp/cache/assets/CE5/670/sprockets%2Fe9e4122f1706626a21da6f8457f088ce +0 -0
- data/test/dummy/tmp/cache/assets/CF7/820/sprockets%2F6284656df87a7eb2545ed9b957560a7b +0 -0
- data/test/dummy/tmp/cache/assets/D00/9B0/sprockets%2F2bc203eb4802b393a589093debb65c04 +0 -0
- data/test/dummy/tmp/cache/assets/D00/A90/sprockets%2F3fa6fcf2205c530208681446cbc36bd3 +0 -0
- data/test/dummy/tmp/cache/assets/D0B/B30/sprockets%2F55059589d999952597c5c86e5becaf4e +0 -0
- data/test/dummy/tmp/cache/assets/D0D/DA0/sprockets%2F34d6b075a16a5a58ff4050988d8bd4b0 +0 -0
- data/test/dummy/tmp/cache/assets/D12/B40/sprockets%2F9c825562fe2a2a38bd6f41a635265bd9 +0 -0
- data/test/dummy/tmp/cache/assets/D1B/D40/sprockets%2F7cc2142509e95f7168a82a652d8d9dea +0 -0
- data/test/dummy/tmp/cache/assets/D1D/700/sprockets%2Ffe9cb975216709e2881c74b3d1d3e35f +0 -0
- data/test/dummy/tmp/cache/assets/D20/A20/sprockets%2Fb503e93ff1966dd94d03e79f291d75c1 +0 -0
- data/test/dummy/tmp/cache/assets/D26/A70/sprockets%2F63d95ae156df465783cd78e95069b2cc +0 -0
- data/test/dummy/tmp/cache/assets/D2B/E60/sprockets%2F8615ecf645b553c959544af9ff8438da +0 -0
- data/test/dummy/tmp/cache/assets/D34/F70/sprockets%2Fb93de9992473bee94e369fe3198c529c +0 -0
- data/test/dummy/tmp/cache/assets/D36/4D0/sprockets%2Fc050a64b5a803a638e155d05dcfe577d +0 -0
- data/test/dummy/tmp/cache/assets/D3E/310/sprockets%2F333a2a7535eac766267ebb7d5c2ab489 +0 -0
- data/test/dummy/tmp/cache/assets/D3F/A00/sprockets%2F7a803404e1f60b8d672d763cb9ba8af5 +0 -0
- data/test/dummy/tmp/cache/assets/D50/570/sprockets%2F6c1d20a178f66e798958d1e437fdb5da +0 -0
- data/test/dummy/tmp/cache/assets/D57/420/sprockets%2F937ea7429c536578ec7b688dee0cdf41 +0 -0
- data/test/dummy/tmp/cache/assets/D69/6F0/sprockets%2F94fff7f55bc4c300b25f3f9361ac1a52 +0 -0
- data/test/dummy/tmp/cache/assets/D86/D00/sprockets%2Fa4f32b4234d0d1bba272cd75e0d48e1d +0 -0
- data/test/dummy/tmp/cache/assets/D8B/B60/sprockets%2Faa32227c440a378ccd21218eefeb80bf +0 -0
- data/test/dummy/tmp/cache/assets/D9F/0B0/sprockets%2Faf0d2e69be3a6b56a76c20bf14d9e468 +0 -0
- data/test/dummy/tmp/cache/assets/DA8/910/sprockets%2Fab5775c4a837bd4d97ac394d473cda9b +0 -0
- data/test/dummy/tmp/cache/assets/DC0/100/sprockets%2F7a5d4f0d352bceed0dce0449c82251bd +0 -0
- data/test/dummy/tmp/cache/assets/DD2/490/sprockets%2Fa452ee92a092bc2feabc572cce49896d +0 -0
- data/test/dummy/tmp/cache/assets/DE1/320/sprockets%2F9f44ecdec8ceeef70871e15d88a448b1 +0 -0
- data/test/dummy/tmp/cache/assets/DF8/5D0/sprockets%2Fb815ed34d61cfed96222daa3bfd1d84d +0 -0
- data/test/dummy/tmp/cache/assets/E16/C70/sprockets%2F21ad93418ff75ceac86c7a85dfffe8f6 +0 -0
- data/test/dummy/tmp/cache/assets/E35/4F0/sprockets%2F96b1cdf8db6a1c8eb8abcce05958ae74 +0 -0
- data/test/dummy/tmp/cache/assets/E4E/300/sprockets%2Fefaae6e1a19a7c8f3acebdd5a36a6103 +0 -0
- data/test/fixtures/myreplicator/exports.yml +11 -0
- data/test/functional/myreplicator/exports_controller_test.rb +51 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/myreplicator_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- data/test/unit/helpers/myreplicator/exports_helper_test.rb +6 -0
- data/test/unit/myreplicator/export_test.rb +10 -0
- data/test/unit/myreplicator/exporter_test.rb +11 -0
- data/test/unit/myreplicator/exporter_test.rb~ +10 -0
- metadata +410 -0
@@ -0,0 +1,1364 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
|
3
|
+
|
4
|
+
Started GET "/export/" for 127.0.0.1 at 2012-10-31 10:03:28 -0700
|
5
|
+
|
6
|
+
ActionController::RoutingError (No route matches [GET] "/export"):
|
7
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
8
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
9
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
10
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
11
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
12
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
13
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
14
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
15
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
16
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
17
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
18
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
19
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
20
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
21
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
22
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
23
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
24
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
25
|
+
|
26
|
+
|
27
|
+
Rendered /home/sasan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.4ms)
|
28
|
+
|
29
|
+
|
30
|
+
Started GET "/myreplicator/export/" for 127.0.0.1 at 2012-10-31 10:03:36 -0700
|
31
|
+
|
32
|
+
ActionController::RoutingError (No route matches [GET] "/myreplicator/export"):
|
33
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
34
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
35
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
36
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
37
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
38
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
39
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
40
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
41
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
42
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
43
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
44
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
45
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
46
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
47
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
48
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
49
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
50
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
51
|
+
|
52
|
+
|
53
|
+
Rendered /home/sasan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
54
|
+
|
55
|
+
|
56
|
+
Started GET "/myreplicator/export" for 127.0.0.1 at 2012-10-31 10:03:39 -0700
|
57
|
+
|
58
|
+
ActionController::RoutingError (No route matches [GET] "/myreplicator/export"):
|
59
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
60
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
61
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
62
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
63
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
64
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
65
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
66
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
67
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
68
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
69
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
70
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
71
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
72
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
73
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
74
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
75
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
76
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
77
|
+
|
78
|
+
|
79
|
+
Rendered /home/sasan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
80
|
+
|
81
|
+
|
82
|
+
Started GET "/myreplicator/" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
83
|
+
Processing by Myreplicator::HomeController#index as HTML
|
84
|
+
Rendered /home/sasan/workspace/myreplicator/app/views/myreplicator/home/index.html.erb within layouts/myreplicator/application (0.3ms)
|
85
|
+
Compiled myreplicator/chosen.css (0ms) (pid 6216)
|
86
|
+
Compiled myreplicator/exports.css (0ms) (pid 6216)
|
87
|
+
Compiled myreplicator/tipTip.css (0ms) (pid 6216)
|
88
|
+
Compiled myreplicator/application.css (48ms) (pid 6216)
|
89
|
+
Compiled jquery.js (4ms) (pid 6216)
|
90
|
+
Compiled jquery_ujs.js (0ms) (pid 6216)
|
91
|
+
Compiled myreplicator/chosen.jquery.min.js (0ms) (pid 6216)
|
92
|
+
Compiled myreplicator/cronwtf.js (0ms) (pid 6216)
|
93
|
+
Compiled myreplicator/exports.js (0ms) (pid 6216)
|
94
|
+
Compiled myreplicator/jquery.tipTip.minified.js (0ms) (pid 6216)
|
95
|
+
Compiled myreplicator/application.js (98ms) (pid 6216)
|
96
|
+
Completed 200 OK in 182ms (Views: 181.2ms | ActiveRecord: 0.0ms)
|
97
|
+
|
98
|
+
|
99
|
+
Started GET "/assets/myreplicator/application.css?body=1" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
100
|
+
Served asset /myreplicator/application.css - 200 OK (35ms)
|
101
|
+
|
102
|
+
|
103
|
+
Started GET "/assets/myreplicator/tipTip.css?body=1" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
104
|
+
Served asset /myreplicator/tipTip.css - 200 OK (2ms)
|
105
|
+
|
106
|
+
|
107
|
+
Started GET "/assets/myreplicator/chosen.css?body=1" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
108
|
+
Served asset /myreplicator/chosen.css - 200 OK (2ms)
|
109
|
+
|
110
|
+
|
111
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
112
|
+
Served asset /jquery.js - 200 OK (4ms)
|
113
|
+
|
114
|
+
|
115
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
116
|
+
Served asset /jquery_ujs.js - 200 OK (2ms)
|
117
|
+
|
118
|
+
|
119
|
+
Started GET "/assets/myreplicator/exports.css?body=1" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
120
|
+
Served asset /myreplicator/exports.css - 200 OK (2ms)
|
121
|
+
|
122
|
+
|
123
|
+
Started GET "/assets/myreplicator/chosen.jquery.min.js?body=1" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
124
|
+
Served asset /myreplicator/chosen.jquery.min.js - 200 OK (2ms)
|
125
|
+
|
126
|
+
|
127
|
+
Started GET "/assets/myreplicator/cronwtf.js?body=1" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
128
|
+
Served asset /myreplicator/cronwtf.js - 200 OK (2ms)
|
129
|
+
|
130
|
+
|
131
|
+
Started GET "/assets/myreplicator/exports.js?body=1" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
132
|
+
Served asset /myreplicator/exports.js - 200 OK (1ms)
|
133
|
+
|
134
|
+
|
135
|
+
Started GET "/assets/myreplicator/jquery.tipTip.minified.js?body=1" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
136
|
+
Served asset /myreplicator/jquery.tipTip.minified.js - 200 OK (2ms)
|
137
|
+
|
138
|
+
|
139
|
+
Started GET "/assets/myreplicator/application.js?body=1" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
140
|
+
Served asset /myreplicator/application.js - 200 OK (30ms)
|
141
|
+
|
142
|
+
|
143
|
+
Started GET "/assets/myreplicator/FrancoisOne.ttf" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
144
|
+
Served asset /myreplicator/FrancoisOne.ttf - 200 OK (8ms)
|
145
|
+
|
146
|
+
|
147
|
+
Started GET "/assets/myreplicator/websymbols-regular-webfont.woff" for 127.0.0.1 at 2012-10-31 10:03:42 -0700
|
148
|
+
Served asset /myreplicator/websymbols-regular-webfont.woff - 200 OK (5ms)
|
149
|
+
|
150
|
+
|
151
|
+
Started GET "/myreplicator/exports" for 127.0.0.1 at 2012-10-31 10:03:44 -0700
|
152
|
+
Processing by Myreplicator::ExportsController#index as HTML
|
153
|
+
Mysql2::Error: Table 'myreplicator.myreplicator_exports' doesn't exist: SHOW FULL FIELDS FROM `myreplicator_exports`
|
154
|
+
Completed 500 Internal Server Error in 2ms
|
155
|
+
|
156
|
+
ActiveRecord::StatementInvalid (Mysql2::Error: Table 'myreplicator.myreplicator_exports' doesn't exist: SHOW FULL FIELDS FROM `myreplicator_exports`):
|
157
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:245:in `query'
|
158
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:245:in `block in execute'
|
159
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract_adapter.rb:280:in `block in log'
|
160
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
161
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract_adapter.rb:275:in `log'
|
162
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:245:in `execute'
|
163
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/mysql2_adapter.rb:211:in `execute'
|
164
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:259:in `execute_and_free'
|
165
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:426:in `columns'
|
166
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
|
167
|
+
activerecord (3.2.8) lib/active_record/model_schema.rb:228:in `yield'
|
168
|
+
activerecord (3.2.8) lib/active_record/model_schema.rb:228:in `default'
|
169
|
+
activerecord (3.2.8) lib/active_record/model_schema.rb:228:in `columns'
|
170
|
+
activerecord (3.2.8) lib/active_record/model_schema.rb:248:in `column_names'
|
171
|
+
/home/sasan/workspace/myreplicator/app/controllers/myreplicator/exports_controller.rb:98:in `sort_column'
|
172
|
+
/home/sasan/workspace/myreplicator/app/controllers/myreplicator/exports_controller.rb:11:in `index'
|
173
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
174
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
|
175
|
+
actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
176
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
177
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__524265392557894121__process_action__3711586756148163660__callbacks'
|
178
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
179
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
180
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
181
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
182
|
+
actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
183
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
184
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
185
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
186
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
187
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
188
|
+
actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
189
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
190
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
|
191
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
192
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
193
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
194
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
195
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
196
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
197
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
198
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
199
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
200
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
201
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
202
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
203
|
+
railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
204
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
205
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
206
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
207
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
208
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
209
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
210
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
211
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
212
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
213
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
214
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
215
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
216
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
217
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
218
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
219
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
220
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4144324730490066761__call__1951888730706759360__callbacks'
|
221
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
222
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
223
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
224
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
225
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
226
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
227
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
228
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
229
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
230
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
231
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
232
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
233
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
234
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
235
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
236
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
237
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
238
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
239
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
240
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
241
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
242
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
243
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
244
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
245
|
+
|
246
|
+
|
247
|
+
Rendered /home/sasan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
248
|
+
Rendered /home/sasan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
249
|
+
Rendered /home/sasan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.4ms)
|
250
|
+
Connecting to database specified by database.yml
|
251
|
+
[1m[36m (39.2ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
252
|
+
[1m[35m (48.6ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
253
|
+
[1m[36m (2.7ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
254
|
+
Migrating to CreateMyreplicatorExports (20121026000720)
|
255
|
+
[1m[35m (25.4ms)[0m CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
256
|
+
[1m[36m (10.0ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121026000720')[0m
|
257
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
258
|
+
Connecting to database specified by database.yml
|
259
|
+
Connecting to database specified by database.yml
|
260
|
+
Connecting to database specified by database.yml
|
261
|
+
|
262
|
+
|
263
|
+
Started GET "/myreplicator/" for 127.0.0.1 at 2012-10-31 11:29:32 -0700
|
264
|
+
Processing by Myreplicator::HomeController#index as HTML
|
265
|
+
Rendered /home/sasan/workspace/myreplicator/app/views/myreplicator/home/index.html.erb within layouts/myreplicator/application (2.1ms)
|
266
|
+
Completed 200 OK in 75ms (Views: 74.2ms | ActiveRecord: 0.0ms)
|
267
|
+
|
268
|
+
|
269
|
+
Started GET "/assets/myreplicator/application.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:32 -0700
|
270
|
+
Served asset /myreplicator/application.css - 304 Not Modified (11ms)
|
271
|
+
|
272
|
+
|
273
|
+
Started GET "/assets/myreplicator/exports.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:32 -0700
|
274
|
+
Served asset /myreplicator/exports.css - 304 Not Modified (2ms)
|
275
|
+
|
276
|
+
|
277
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:32 -0700
|
278
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
279
|
+
|
280
|
+
|
281
|
+
Started GET "/assets/myreplicator/chosen.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:32 -0700
|
282
|
+
Served asset /myreplicator/chosen.css - 304 Not Modified (2ms)
|
283
|
+
|
284
|
+
|
285
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:32 -0700
|
286
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
287
|
+
|
288
|
+
|
289
|
+
Started GET "/assets/myreplicator/tipTip.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:32 -0700
|
290
|
+
Served asset /myreplicator/tipTip.css - 304 Not Modified (2ms)
|
291
|
+
|
292
|
+
|
293
|
+
Started GET "/assets/myreplicator/chosen.jquery.min.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:32 -0700
|
294
|
+
Served asset /myreplicator/chosen.jquery.min.js - 304 Not Modified (2ms)
|
295
|
+
|
296
|
+
|
297
|
+
Started GET "/assets/myreplicator/cronwtf.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:32 -0700
|
298
|
+
Served asset /myreplicator/cronwtf.js - 304 Not Modified (3ms)
|
299
|
+
|
300
|
+
|
301
|
+
Started GET "/assets/myreplicator/exports.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:33 -0700
|
302
|
+
Served asset /myreplicator/exports.js - 304 Not Modified (1ms)
|
303
|
+
|
304
|
+
|
305
|
+
Started GET "/assets/myreplicator/jquery.tipTip.minified.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:33 -0700
|
306
|
+
Served asset /myreplicator/jquery.tipTip.minified.js - 304 Not Modified (2ms)
|
307
|
+
|
308
|
+
|
309
|
+
Started GET "/assets/myreplicator/application.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:33 -0700
|
310
|
+
Served asset /myreplicator/application.js - 304 Not Modified (8ms)
|
311
|
+
|
312
|
+
|
313
|
+
Started GET "/myreplicator/exports" for 127.0.0.1 at 2012-10-31 11:29:34 -0700
|
314
|
+
Processing by Myreplicator::ExportsController#index as HTML
|
315
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `myreplicator_exports` [0m
|
316
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` ORDER BY source_schema asc LIMIT 30 OFFSET 0
|
317
|
+
Rendered /home/sasan/workspace/myreplicator/app/views/myreplicator/exports/index.html.erb within layouts/myreplicator/application (11.9ms)
|
318
|
+
Completed 200 OK in 26ms (Views: 20.9ms | ActiveRecord: 1.9ms)
|
319
|
+
|
320
|
+
|
321
|
+
Started GET "/assets/myreplicator/application.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
322
|
+
Served asset /myreplicator/application.css - 304 Not Modified (2ms)
|
323
|
+
|
324
|
+
|
325
|
+
Started GET "/assets/myreplicator/chosen.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
326
|
+
Served asset /myreplicator/chosen.css - 304 Not Modified (2ms)
|
327
|
+
|
328
|
+
|
329
|
+
Started GET "/assets/myreplicator/tipTip.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
330
|
+
Served asset /myreplicator/tipTip.css - 304 Not Modified (0ms)
|
331
|
+
|
332
|
+
|
333
|
+
Started GET "/assets/myreplicator/exports.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
334
|
+
Served asset /myreplicator/exports.css - 304 Not Modified (0ms)
|
335
|
+
|
336
|
+
|
337
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
338
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
339
|
+
|
340
|
+
|
341
|
+
Started GET "/assets/myreplicator/chosen.jquery.min.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
342
|
+
Served asset /myreplicator/chosen.jquery.min.js - 304 Not Modified (0ms)
|
343
|
+
|
344
|
+
|
345
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
346
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
347
|
+
|
348
|
+
|
349
|
+
Started GET "/assets/myreplicator/cronwtf.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
350
|
+
Served asset /myreplicator/cronwtf.js - 304 Not Modified (0ms)
|
351
|
+
|
352
|
+
|
353
|
+
Started GET "/assets/myreplicator/exports.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
354
|
+
Served asset /myreplicator/exports.js - 304 Not Modified (0ms)
|
355
|
+
|
356
|
+
|
357
|
+
Started GET "/assets/myreplicator/jquery.tipTip.minified.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
358
|
+
Served asset /myreplicator/jquery.tipTip.minified.js - 304 Not Modified (0ms)
|
359
|
+
|
360
|
+
|
361
|
+
Started GET "/assets/myreplicator/application.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
362
|
+
Served asset /myreplicator/application.js - 304 Not Modified (1ms)
|
363
|
+
|
364
|
+
|
365
|
+
Started GET "/assets/myreplicator/plus.png" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
366
|
+
Served asset /myreplicator/plus.png - 200 OK (10ms)
|
367
|
+
|
368
|
+
|
369
|
+
Started GET "/assets/myreplicator/bg.gif" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
370
|
+
Served asset /myreplicator/bg.gif - 200 OK (5ms)
|
371
|
+
|
372
|
+
|
373
|
+
Started GET "/assets/myreplicator/desc-white.gif" for 127.0.0.1 at 2012-10-31 11:29:35 -0700
|
374
|
+
Served asset /myreplicator/desc-white.gif - 200 OK (5ms)
|
375
|
+
|
376
|
+
|
377
|
+
Started GET "/myreplicator/exports/new" for 127.0.0.1 at 2012-10-31 11:29:36 -0700
|
378
|
+
Processing by Myreplicator::ExportsController#new as HTML
|
379
|
+
Rendered /home/sasan/workspace/myreplicator/app/views/myreplicator/exports/_form.html.erb (88.8ms)
|
380
|
+
Rendered /home/sasan/workspace/myreplicator/app/views/myreplicator/exports/new.html.erb within layouts/myreplicator/application (92.8ms)
|
381
|
+
Completed 200 OK in 118ms (Views: 101.6ms | ActiveRecord: 0.0ms)
|
382
|
+
|
383
|
+
|
384
|
+
Started GET "/myreplicator/exports/new" for 127.0.0.1 at 2012-10-31 11:29:36 -0700
|
385
|
+
Processing by Myreplicator::ExportsController#new as HTML
|
386
|
+
Rendered /home/sasan/workspace/myreplicator/app/views/myreplicator/exports/_form.html.erb (21.1ms)
|
387
|
+
Rendered /home/sasan/workspace/myreplicator/app/views/myreplicator/exports/new.html.erb within layouts/myreplicator/application (21.7ms)
|
388
|
+
Completed 200 OK in 30ms (Views: 30.2ms | ActiveRecord: 0.0ms)
|
389
|
+
|
390
|
+
|
391
|
+
Started GET "/assets/myreplicator/chosen.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
392
|
+
Served asset /myreplicator/chosen.css - 304 Not Modified (0ms)
|
393
|
+
|
394
|
+
|
395
|
+
Started GET "/assets/myreplicator/application.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
396
|
+
Served asset /myreplicator/application.css - 304 Not Modified (34ms)
|
397
|
+
|
398
|
+
|
399
|
+
Started GET "/assets/myreplicator/exports.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
400
|
+
Served asset /myreplicator/exports.css - 304 Not Modified (0ms)
|
401
|
+
|
402
|
+
|
403
|
+
Started GET "/assets/myreplicator/tipTip.css?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
404
|
+
Served asset /myreplicator/tipTip.css - 304 Not Modified (0ms)
|
405
|
+
|
406
|
+
|
407
|
+
Started GET "/assets/myreplicator/chosen.jquery.min.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
408
|
+
Served asset /myreplicator/chosen.jquery.min.js - 304 Not Modified (0ms)
|
409
|
+
|
410
|
+
|
411
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
412
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
413
|
+
|
414
|
+
|
415
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
416
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
417
|
+
|
418
|
+
|
419
|
+
Started GET "/assets/myreplicator/cronwtf.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
420
|
+
Served asset /myreplicator/cronwtf.js - 304 Not Modified (0ms)
|
421
|
+
|
422
|
+
|
423
|
+
Started GET "/assets/myreplicator/exports.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
424
|
+
Served asset /myreplicator/exports.js - 304 Not Modified (0ms)
|
425
|
+
|
426
|
+
|
427
|
+
Started GET "/assets/myreplicator/jquery.tipTip.minified.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
428
|
+
Served asset /myreplicator/jquery.tipTip.minified.js - 304 Not Modified (0ms)
|
429
|
+
|
430
|
+
|
431
|
+
Started GET "/assets/myreplicator/application.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
432
|
+
Served asset /myreplicator/application.js - 304 Not Modified (1ms)
|
433
|
+
|
434
|
+
|
435
|
+
Started GET "/assets/myreplicator/cronwtf.min.js" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
436
|
+
Served asset /myreplicator/cronwtf.min.js - 404 Not Found (3ms)
|
437
|
+
|
438
|
+
ActionController::RoutingError (No route matches [GET] "/assets/myreplicator/cronwtf.min.js"):
|
439
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
440
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
441
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
442
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
443
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
444
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
445
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
446
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
447
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
448
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
449
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
450
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
451
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
452
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
453
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
454
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
455
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
456
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
457
|
+
|
458
|
+
|
459
|
+
Rendered /home/sasan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
460
|
+
|
461
|
+
|
462
|
+
Started GET "/assets/myreplicator/chosen.jquery.min.js?body=1" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
463
|
+
Served asset /myreplicator/chosen.jquery.min.js - 304 Not Modified (0ms)
|
464
|
+
|
465
|
+
|
466
|
+
Started GET "/assets/myreplicator/cronwtf.min.js" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
467
|
+
Served asset /myreplicator/cronwtf.min.js - 404 Not Found (3ms)
|
468
|
+
|
469
|
+
ActionController::RoutingError (No route matches [GET] "/assets/myreplicator/cronwtf.min.js"):
|
470
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
471
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
472
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
473
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
474
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
475
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
476
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
477
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
478
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
479
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
480
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
481
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
482
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
483
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
484
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
485
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
486
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
487
|
+
/home/sasan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
488
|
+
|
489
|
+
|
490
|
+
Rendered /home/sasan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
491
|
+
|
492
|
+
|
493
|
+
Started GET "/assets/myreplicator/cross.png" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
494
|
+
Served asset /myreplicator/cross.png - 200 OK (7ms)
|
495
|
+
|
496
|
+
|
497
|
+
Started GET "/assets/myreplicator/chosen-sprite.png" for 127.0.0.1 at 2012-10-31 11:29:37 -0700
|
498
|
+
Served asset /myreplicator/chosen-sprite.png - 200 OK (6ms)
|
499
|
+
Connecting to database specified by database.yml
|
500
|
+
[1m[36m (1.3ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
501
|
+
Migrating to CreateMyreplicatorExports (20121026000720)
|
502
|
+
Migrating to SampleData (20121031182043)
|
503
|
+
[1m[35m (35.1ms)[0m
|
504
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
505
|
+
`id` INT NULL AUTO_INCREMENT ,
|
506
|
+
`desc` VARCHAR(45) NULL ,
|
507
|
+
`updated_at` DATETIME NULL ,
|
508
|
+
PRIMARY KEY (`id`) );
|
509
|
+
|
510
|
+
|
511
|
+
[1m[36m (11.2ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121031182043')[0m
|
512
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
513
|
+
Connecting to database specified by database.yml
|
514
|
+
[1m[36m (0.9ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
515
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
516
|
+
Migrating to SampleData (20121031182043)
|
517
|
+
[1m[36m (0.3ms)[0m [1mtruncate myreplipcator.my_test[0m
|
518
|
+
Mysql2::Error: Table 'myreplipcator.my_test' doesn't exist: truncate myreplipcator.my_test
|
519
|
+
Connecting to database specified by database.yml
|
520
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
521
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
522
|
+
Migrating to SampleData (20121031182043)
|
523
|
+
[1m[36m (0.4ms)[0m [1mdrop myreplicator.my_test[0m
|
524
|
+
Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'myreplicator.my_test' at line 1: drop myreplicator.my_test
|
525
|
+
Connecting to database specified by database.yml
|
526
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
527
|
+
[1m[35m (0.1ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
528
|
+
Migrating to SampleData (20121031182043)
|
529
|
+
[1m[36m (10.8ms)[0m [1mdrop table if EXISTS myreplicator.my_test[0m
|
530
|
+
[1m[35m (10.4ms)[0m truncate myreplicator.myreplicator_exports
|
531
|
+
[1m[36m (8.2ms)[0m [1mDELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20121031182043'[0m
|
532
|
+
[1m[35m (0.4ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
533
|
+
Connecting to database specified by database.yml
|
534
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
535
|
+
Migrating to CreateMyreplicatorExports (20121026000720)
|
536
|
+
Migrating to SampleData (20121031182043)
|
537
|
+
[1m[35m (60.6ms)[0m
|
538
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
539
|
+
`id` INT NULL AUTO_INCREMENT ,
|
540
|
+
`desc` VARCHAR(45) NULL ,
|
541
|
+
`updated_at` DATETIME NULL ,
|
542
|
+
PRIMARY KEY (`id`) );
|
543
|
+
|
544
|
+
|
545
|
+
[1m[36m (7.9ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121031182043')[0m
|
546
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
547
|
+
Connecting to database specified by database.yml
|
548
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
549
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
550
|
+
Migrating to SampleData (20121031182043)
|
551
|
+
[1m[36m (12.5ms)[0m [1mdrop table if EXISTS myreplicator.my_test[0m
|
552
|
+
[1m[35m (8.8ms)[0m truncate myreplicator.myreplicator_exports
|
553
|
+
[1m[36m (8.2ms)[0m [1mDELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20121031182043'[0m
|
554
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
555
|
+
Connecting to database specified by database.yml
|
556
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
557
|
+
Migrating to CreateMyreplicatorExports (20121026000720)
|
558
|
+
Migrating to SampleData (20121031182043)
|
559
|
+
[1m[35m (24.2ms)[0m
|
560
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
561
|
+
`id` INT NULL AUTO_INCREMENT ,
|
562
|
+
`desc` VARCHAR(45) NULL ,
|
563
|
+
`updated_at` DATETIME NULL ,
|
564
|
+
PRIMARY KEY (`id`) );
|
565
|
+
|
566
|
+
|
567
|
+
[1m[36m (13.6ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');[0m
|
568
|
+
[1m[35m (10.5ms)[0m INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (2, '2', '2012-10-31 10:11:00');
|
569
|
+
[1m[36m (9.6ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121031182043')[0m
|
570
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
571
|
+
Connecting to database specified by database.yml
|
572
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
573
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
574
|
+
Migrating to SampleData (20121031182043)
|
575
|
+
[1m[36m (7.6ms)[0m [1mdrop table if EXISTS myreplicator.my_test[0m
|
576
|
+
[1m[35m (10.5ms)[0m truncate myreplicator.myreplicator_exports
|
577
|
+
[1m[36m (6.6ms)[0m [1mDELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20121031182043'[0m
|
578
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
579
|
+
Connecting to database specified by database.yml
|
580
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
581
|
+
Migrating to CreateMyreplicatorExports (20121026000720)
|
582
|
+
Migrating to SampleData (20121031182043)
|
583
|
+
[1m[35m (24.3ms)[0m
|
584
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
585
|
+
`id` INT NULL AUTO_INCREMENT ,
|
586
|
+
`desc` VARCHAR(45) NULL ,
|
587
|
+
`updated_at` DATETIME NULL ,
|
588
|
+
PRIMARY KEY (`id`) );
|
589
|
+
|
590
|
+
|
591
|
+
[1m[36m (8.3ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');[0m
|
592
|
+
[1m[35m (9.5ms)[0m INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (2, '2', '2012-10-31 10:11:00');
|
593
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
594
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `export_to`, `export_type`, `incremental_column`, `max_incremental_value`, `s3_path`, `source_schema`, `table_name`, `updated_at`) VALUES (1, '2012-10-31 18:47:12', '2 * * * *', 'dummy', 'destination_db', 'incremental', 'updated_at', NULL, NULL, 'myreplicator', 'my_test', '2012-10-31 18:47:12')
|
595
|
+
[1m[36m (12.8ms)[0m [1mCOMMIT[0m
|
596
|
+
[1m[35m (7.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20121031182043')
|
597
|
+
[1m[36m (0.2ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
598
|
+
Connecting to database specified by database.yml
|
599
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
600
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
601
|
+
Migrating to SampleData (20121031182043)
|
602
|
+
[1m[36m (9.9ms)[0m [1mdrop table if EXISTS myreplicator.my_test[0m
|
603
|
+
[1m[35m (12.1ms)[0m truncate myreplicator.myreplicator_exports
|
604
|
+
[1m[36m (8.8ms)[0m [1mDELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20121031182043'[0m
|
605
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
606
|
+
Connecting to database specified by database.yml
|
607
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
608
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
609
|
+
Migrating to CreateMyreplicatorExports (20121026000720)
|
610
|
+
[1m[36m (16.5ms)[0m [1mDROP TABLE `myreplicator_exports`[0m
|
611
|
+
[1m[35m (8.7ms)[0m DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20121026000720'
|
612
|
+
[1m[36m (0.3ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
613
|
+
Connecting to database specified by database.yml
|
614
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
615
|
+
Migrating to CreateMyreplicatorExports (20121026000720)
|
616
|
+
[1m[35m (33.0ms)[0m CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
617
|
+
[1m[36m (7.4ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121026000720')[0m
|
618
|
+
Migrating to SampleData (20121031182043)
|
619
|
+
[1m[35m (25.2ms)[0m
|
620
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
621
|
+
`id` INT NULL AUTO_INCREMENT ,
|
622
|
+
`desc` VARCHAR(45) NULL ,
|
623
|
+
`updated_at` DATETIME NULL ,
|
624
|
+
PRIMARY KEY (`id`) );
|
625
|
+
|
626
|
+
|
627
|
+
[1m[36m (5.3ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');[0m
|
628
|
+
[1m[35m (11.8ms)[0m INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (2, '2', '2012-10-31 10:11:00');
|
629
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
630
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `export_to`, `export_type`, `incremental_column`, `max_incremental_value`, `s3_path`, `source_schema`, `table_name`, `updated_at`) VALUES (1, '2012-10-31 20:51:09', '2 * * * *', 'dummy', 'destination_db', 'incremental', 'updated_at', NULL, NULL, 'myreplicator', 'my_test', '2012-10-31 20:51:09')
|
631
|
+
[1m[36m (8.9ms)[0m [1mCOMMIT[0m
|
632
|
+
[1m[35m (9.5ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20121031182043')
|
633
|
+
[1m[36m (0.3ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
634
|
+
Connecting to database specified by database.yml
|
635
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
636
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
637
|
+
Migrating to SampleData (20121031182043)
|
638
|
+
[1m[36m (14.6ms)[0m [1mdrop table if EXISTS myreplicator.my_test[0m
|
639
|
+
[1m[35m (8.8ms)[0m truncate myreplicator.myreplicator_exports
|
640
|
+
[1m[36m (9.4ms)[0m [1mDELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20121031182043'[0m
|
641
|
+
[1m[35m (0.4ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
642
|
+
Connecting to database specified by database.yml
|
643
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
644
|
+
Migrating to CreateMyreplicatorExports (20121026000720)
|
645
|
+
Migrating to SampleData (20121031182043)
|
646
|
+
[1m[35m (30.0ms)[0m
|
647
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
648
|
+
`id` INT NULL AUTO_INCREMENT ,
|
649
|
+
`desc` VARCHAR(45) NULL ,
|
650
|
+
`updated_at` DATETIME NULL ,
|
651
|
+
PRIMARY KEY (`id`) );
|
652
|
+
|
653
|
+
|
654
|
+
[1m[36m (7.0ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');[0m
|
655
|
+
[1m[35m (7.9ms)[0m INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (2, '2', '2012-10-31 10:11:00');
|
656
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
657
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `export_to`, `export_type`, `incremental_column`, `max_incremental_value`, `s3_path`, `source_schema`, `table_name`, `updated_at`) VALUES (1, '2012-10-31 20:52:14', '2 * * * *', 'dummy', 'destination_db', 'incremental', 'updated_at', NULL, NULL, 'myreplicator', 'my_test', '2012-10-31 20:52:14')
|
658
|
+
[1m[36m (8.2ms)[0m [1mCOMMIT[0m
|
659
|
+
[1m[35m (9.1ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20121031182043')
|
660
|
+
[1m[36m (0.3ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
661
|
+
Connecting to database specified by database.yml
|
662
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
663
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
664
|
+
Migrating to SampleData (20121031182043)
|
665
|
+
[1m[36m (10.8ms)[0m [1mdrop table if EXISTS myreplicator.my_test[0m
|
666
|
+
[1m[35m (12.2ms)[0m truncate myreplicator.myreplicator_exports
|
667
|
+
[1m[36m (8.2ms)[0m [1mDELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20121031182043'[0m
|
668
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
669
|
+
Connecting to database specified by database.yml
|
670
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
671
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
672
|
+
Migrating to CreateMyreplicatorExports (20121026000720)
|
673
|
+
[1m[36m (12.3ms)[0m [1mDROP TABLE `myreplicator_exports`[0m
|
674
|
+
[1m[35m (7.6ms)[0m DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20121026000720'
|
675
|
+
[1m[36m (0.3ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
676
|
+
Connecting to database specified by database.yml
|
677
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
678
|
+
Migrating to SampleData (20121031182043)
|
679
|
+
[1m[35m (23.6ms)[0m
|
680
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
681
|
+
`id` INT NULL AUTO_INCREMENT ,
|
682
|
+
`desc` VARCHAR(45) NULL ,
|
683
|
+
`updated_at` DATETIME NULL ,
|
684
|
+
PRIMARY KEY (`id`) );
|
685
|
+
|
686
|
+
|
687
|
+
[1m[36m (7.6ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');[0m
|
688
|
+
[1m[35m (7.9ms)[0m INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (2, '2', '2012-10-31 10:11:00');
|
689
|
+
Mysql2::Error: Table 'myreplicator.myreplicator_exports' doesn't exist: SHOW FULL FIELDS FROM `myreplicator_exports`
|
690
|
+
Connecting to database specified by database.yml
|
691
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
692
|
+
Migrating to SampleData (20121031182043)
|
693
|
+
[1m[35m (0.2ms)[0m
|
694
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
695
|
+
`id` INT NULL AUTO_INCREMENT ,
|
696
|
+
`desc` VARCHAR(45) NULL ,
|
697
|
+
`updated_at` DATETIME NULL ,
|
698
|
+
PRIMARY KEY (`id`) );
|
699
|
+
|
700
|
+
|
701
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');[0m
|
702
|
+
Mysql2::Error: Duplicate entry '1' for key 'PRIMARY': INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');
|
703
|
+
Connecting to database specified by database.yml
|
704
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
705
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
706
|
+
Connecting to database specified by database.yml
|
707
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
708
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
709
|
+
Connecting to database specified by database.yml
|
710
|
+
Connecting to database specified by database.yml
|
711
|
+
[1m[36m (0.3ms)[0m [1mSELECT version FROM schema_migrations[0m
|
712
|
+
Connecting to database specified by database.yml
|
713
|
+
Connecting to database specified by database.yml
|
714
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
715
|
+
[1m[35m (32.0ms)[0m CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
716
|
+
[1m[36m (10.7ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121031205339')[0m
|
717
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
718
|
+
Connecting to database specified by database.yml
|
719
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
720
|
+
[1m[35m (0.2ms)[0m
|
721
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
722
|
+
`id` INT NULL AUTO_INCREMENT ,
|
723
|
+
`desc` VARCHAR(45) NULL ,
|
724
|
+
`updated_at` DATETIME NULL ,
|
725
|
+
PRIMARY KEY (`id`) );
|
726
|
+
|
727
|
+
|
728
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');[0m
|
729
|
+
Mysql2::Error: Duplicate entry '1' for key 'PRIMARY': INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');
|
730
|
+
Connecting to database specified by database.yml
|
731
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
732
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
733
|
+
Connecting to database specified by database.yml
|
734
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
735
|
+
[1m[35m (0.1ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
736
|
+
[1m[36m (0.2ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
737
|
+
[1m[35m (0.2ms)[0m
|
738
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
739
|
+
`id` INT NULL AUTO_INCREMENT ,
|
740
|
+
`desc` VARCHAR(45) NULL ,
|
741
|
+
`updated_at` DATETIME NULL ,
|
742
|
+
PRIMARY KEY (`id`) );
|
743
|
+
|
744
|
+
|
745
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');[0m
|
746
|
+
Mysql2::Error: Duplicate entry '1' for key 'PRIMARY': INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');
|
747
|
+
Connecting to database specified by database.yml
|
748
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
749
|
+
[1m[35m (13.8ms)[0m drop table if EXISTS myreplicator.my_test
|
750
|
+
[1m[36m (30.8ms)[0m [1m
|
751
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
752
|
+
`id` INT NULL AUTO_INCREMENT ,
|
753
|
+
`desc` VARCHAR(45) NULL ,
|
754
|
+
`updated_at` DATETIME NULL ,
|
755
|
+
PRIMARY KEY (`id`) );
|
756
|
+
|
757
|
+
[0m
|
758
|
+
[1m[35m (10.8ms)[0m INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');
|
759
|
+
[1m[36m (8.2ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (2, '2', '2012-10-31 10:11:00');[0m
|
760
|
+
[1m[35m (0.2ms)[0m BEGIN
|
761
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-10-31 20:57:30', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-10-31 20:57:30')[0m
|
762
|
+
[1m[35m (12.7ms)[0m COMMIT
|
763
|
+
[1m[36m (6.2ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121031182043')[0m
|
764
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
765
|
+
Connecting to database specified by database.yml
|
766
|
+
Connecting to database specified by database.yml
|
767
|
+
Connecting to database specified by database.yml
|
768
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
769
|
+
[1m[35m (0.1ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
770
|
+
Migrating to CreateMyreplicatorExports (20121031205339)
|
771
|
+
[1m[36m (10.2ms)[0m [1mDROP TABLE `myreplicator_exports`[0m
|
772
|
+
[1m[35m (10.2ms)[0m DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20121031205339'
|
773
|
+
[1m[36m (0.3ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
774
|
+
Connecting to database specified by database.yml
|
775
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
776
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
777
|
+
Migrating to SampleData (20121031182043)
|
778
|
+
[1m[36m (10.5ms)[0m [1mdrop table if EXISTS myreplicator.my_test[0m
|
779
|
+
[1m[35m (0.4ms)[0m truncate myreplicator.myreplicator_exports
|
780
|
+
Mysql2::Error: Table 'myreplicator.myreplicator_exports' doesn't exist: truncate myreplicator.myreplicator_exports
|
781
|
+
Connecting to database specified by database.yml
|
782
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
783
|
+
Migrating to CreateMyreplicatorExports (20121101004823)
|
784
|
+
[1m[35m (33.7ms)[0m CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
785
|
+
Connecting to database specified by database.yml
|
786
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
787
|
+
Migrating to CreateMyreplicatorExports (20121101004823)
|
788
|
+
[1m[35m (0.6ms)[0m CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
789
|
+
Mysql2::Error: Table 'myreplicator_exports' already exists: CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
790
|
+
Connecting to database specified by database.yml
|
791
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
792
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
793
|
+
Connecting to database specified by database.yml
|
794
|
+
[1m[36m (21.8ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
795
|
+
Migrating to CreateMyreplicatorExports (20121025191622)
|
796
|
+
[1m[35m (0.5ms)[0m CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
797
|
+
Mysql2::Error: Table 'myreplicator_exports' already exists: CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
798
|
+
Connecting to database specified by database.yml
|
799
|
+
[1m[36m (21.7ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
800
|
+
Migrating to CreateMyreplicatorExports (20121025191622)
|
801
|
+
[1m[35m (9.7ms)[0m DROP TABLE `myreplicator_exports`
|
802
|
+
[1m[36m (35.9ms)[0m [1mCREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
803
|
+
Connecting to database specified by database.yml
|
804
|
+
[1m[36m (21.4ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
805
|
+
Migrating to CreateMyreplicatorExports (20121025191622)
|
806
|
+
[1m[35m (10.5ms)[0m DROP TABLE `myreplicator_exports`
|
807
|
+
[1m[36m (33.1ms)[0m [1mCREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
808
|
+
[1m[35m (49.1ms)[0m CREATE UNIQUE INDEX `unique_index` ON `myreplicator_exports` (`source_schema`, `destination_schema`, `table_name`)
|
809
|
+
[1m[36m (10.6ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121025191622')[0m
|
810
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
811
|
+
Connecting to database specified by database.yml
|
812
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
813
|
+
Migrating to CreateMyreplicatorExports (20121101005108)
|
814
|
+
[1m[35m (0.6ms)[0m CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
815
|
+
Mysql2::Error: Table 'myreplicator_exports' already exists: CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
816
|
+
Connecting to database specified by database.yml
|
817
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
818
|
+
Migrating to CreateMyreplicatorExports (20121101005108)
|
819
|
+
[1m[35m (22.6ms)[0m CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
820
|
+
[1m[36m (48.4ms)[0m [1mCREATE UNIQUE INDEX `unique_index` ON `myreplicator_exports` (`source_schema`, `destination_schema`, `table_name`)[0m
|
821
|
+
[1m[35m (7.0ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20121101005108')
|
822
|
+
[1m[36m (0.3ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
823
|
+
Connecting to database specified by database.yml
|
824
|
+
Connecting to database specified by database.yml
|
825
|
+
[1m[36m (0.9ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
826
|
+
Migrating to CreateMyreplicatorExports (20121101005108)
|
827
|
+
Migrating to SampleData (20121101005152)
|
828
|
+
[1m[35m (0.3ms)[0m drop table if EXISTS myreplicator.my_test
|
829
|
+
[1m[36m (20.6ms)[0m [1m
|
830
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
831
|
+
`id` INT NULL AUTO_INCREMENT ,
|
832
|
+
`desc` VARCHAR(45) NULL ,
|
833
|
+
`updated_at` DATETIME NULL ,
|
834
|
+
PRIMARY KEY (`id`) );
|
835
|
+
|
836
|
+
[0m
|
837
|
+
[1m[35m (10.5ms)[0m INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');
|
838
|
+
[1m[36m (7.3ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (2, '2', '2012-10-31 10:11:00');[0m
|
839
|
+
[1m[35m (0.2ms)[0m BEGIN
|
840
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-01 00:52:11', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-01 00:52:11')[0m
|
841
|
+
[1m[35m (9.2ms)[0m COMMIT
|
842
|
+
[1m[36m (7.7ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121101005152')[0m
|
843
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
844
|
+
Connecting to database specified by database.yml
|
845
|
+
[1m[36m (2.7ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
846
|
+
Migrating to CreateMyreplicatorExports (20121101005108)
|
847
|
+
Migrating to SampleData (20121101005152)
|
848
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
849
|
+
Connecting to database specified by database.yml
|
850
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
851
|
+
[1m[35mMyreplicator::Export Load (0.6ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
852
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
853
|
+
[1m[35m (0.2ms)[0m COMMIT
|
854
|
+
Connecting to database specified by database.yml
|
855
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
856
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
857
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
858
|
+
[1m[35m (0.2ms)[0m COMMIT
|
859
|
+
Connecting to database specified by database.yml
|
860
|
+
[1m[36m (0.9ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
861
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
862
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
863
|
+
[1m[35m (0.1ms)[0m COMMIT
|
864
|
+
Connecting to database specified by database.yml
|
865
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
866
|
+
[1m[35mMyreplicator::Export Load (0.2ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
867
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
868
|
+
[1m[35m (0.2ms)[0m COMMIT
|
869
|
+
[1m[36m (0.2ms)[0m [1mSELECT @@FOREIGN_KEY_CHECKS[0m
|
870
|
+
[1m[35m (0.2ms)[0m SET FOREIGN_KEY_CHECKS = 0
|
871
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
872
|
+
Connecting to database specified by database.yml
|
873
|
+
[1m[36m (1.2ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
874
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
875
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
876
|
+
[1m[35m (0.1ms)[0m COMMIT
|
877
|
+
[1m[36m (0.2ms)[0m [1mSELECT @@FOREIGN_KEY_CHECKS[0m
|
878
|
+
[1m[35m (0.2ms)[0m SET FOREIGN_KEY_CHECKS = 0
|
879
|
+
[1m[36m (0.3ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
880
|
+
Connecting to database specified by database.yml
|
881
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
882
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
883
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
884
|
+
[1m[35m (0.2ms)[0m COMMIT
|
885
|
+
[1m[36m (0.2ms)[0m [1mSELECT @@FOREIGN_KEY_CHECKS[0m
|
886
|
+
[1m[35m (0.2ms)[0m SET FOREIGN_KEY_CHECKS = 0
|
887
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
888
|
+
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM `myreplicator_exports`
|
889
|
+
[1m[36m (17.2ms)[0m [1mCOMMIT[0m
|
890
|
+
[1m[35m (0.1ms)[0m SET FOREIGN_KEY_CHECKS = 1
|
891
|
+
Connecting to database specified by database.yml
|
892
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
893
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
894
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
895
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:21:54', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:21:54')
|
896
|
+
[1m[36m (12.7ms)[0m [1mCOMMIT[0m
|
897
|
+
[1m[35m (0.2ms)[0m BEGIN
|
898
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m
|
899
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
900
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
901
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:21:54', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:21:54')
|
902
|
+
[1m[36m (6.4ms)[0m [1mCOMMIT[0m
|
903
|
+
[1m[35m (0.2ms)[0m BEGIN
|
904
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m
|
905
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
906
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
907
|
+
[1m[35m (0.2ms)[0m BEGIN
|
908
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
909
|
+
[1m[35m (7.9ms)[0m COMMIT
|
910
|
+
[1m[36m (0.1ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
911
|
+
Connecting to database specified by database.yml
|
912
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
913
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
914
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
915
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:22:42', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:22:42')
|
916
|
+
[1m[36m (12.2ms)[0m [1mCOMMIT[0m
|
917
|
+
[1m[35m (0.2ms)[0m BEGIN
|
918
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m
|
919
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
920
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
921
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:22:42', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:22:42')
|
922
|
+
[1m[36m (8.8ms)[0m [1mCOMMIT[0m
|
923
|
+
[1m[35m (0.2ms)[0m BEGIN
|
924
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m
|
925
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
926
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
927
|
+
[1m[35m (0.1ms)[0m BEGIN
|
928
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
929
|
+
[1m[35m (7.7ms)[0m COMMIT
|
930
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
931
|
+
Connecting to database specified by database.yml
|
932
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
933
|
+
Connecting to database specified by database.yml
|
934
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
935
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
936
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
937
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:24:46', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:24:46')
|
938
|
+
[1m[36m (11.4ms)[0m [1mCOMMIT[0m
|
939
|
+
[1m[35m (0.1ms)[0m BEGIN
|
940
|
+
[1m[36m (0.1ms)[0m [1mCOMMIT[0m
|
941
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
942
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
943
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:24:46', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:24:46')
|
944
|
+
[1m[36m (8.0ms)[0m [1mCOMMIT[0m
|
945
|
+
[1m[35m (0.2ms)[0m BEGIN
|
946
|
+
[1m[36m (0.1ms)[0m [1mCOMMIT[0m
|
947
|
+
[1m[35m (0.3ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
948
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
949
|
+
[1m[35m (0.2ms)[0m BEGIN
|
950
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
951
|
+
[1m[35m (8.3ms)[0m COMMIT
|
952
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
953
|
+
Connecting to database specified by database.yml
|
954
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
955
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
956
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
957
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:25:03', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:25:03')
|
958
|
+
[1m[36m (9.2ms)[0m [1mCOMMIT[0m
|
959
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
960
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
961
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:25:03', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:25:03')
|
962
|
+
[1m[36m (7.8ms)[0m [1mCOMMIT[0m
|
963
|
+
[1m[35m (0.3ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
964
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
965
|
+
[1m[35m (0.1ms)[0m BEGIN
|
966
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
967
|
+
[1m[35m (8.8ms)[0m COMMIT
|
968
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
969
|
+
Connecting to database specified by database.yml
|
970
|
+
[1m[36m (0.9ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
971
|
+
[1m[35m (0.2ms)[0m BEGIN
|
972
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:25:32', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:25:32')[0m
|
973
|
+
[1m[35m (10.3ms)[0m COMMIT
|
974
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
975
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:25:32', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:25:32')
|
976
|
+
[1m[36m (7.8ms)[0m [1mCOMMIT[0m
|
977
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
978
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
979
|
+
[1m[35m (0.1ms)[0m BEGIN
|
980
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
981
|
+
[1m[35m (7.1ms)[0m COMMIT
|
982
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
983
|
+
Connecting to database specified by database.yml
|
984
|
+
Connecting to database specified by database.yml
|
985
|
+
Connecting to database specified by database.yml
|
986
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
987
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
988
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
989
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:28:55', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:28:55')
|
990
|
+
[1m[36m (9.5ms)[0m [1mCOMMIT[0m
|
991
|
+
[1m[35mMyreplicator::Export Load (0.5ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
992
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
993
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:28:55', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:28:55')
|
994
|
+
[1m[36m (11.2ms)[0m [1mCOMMIT[0m
|
995
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
996
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
997
|
+
[1m[35m (0.2ms)[0m BEGIN
|
998
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
999
|
+
[1m[35m (7.5ms)[0m COMMIT
|
1000
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
1001
|
+
Connecting to database specified by database.yml
|
1002
|
+
[1m[36m (29.8ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
1003
|
+
[1m[35m (44.2ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
1004
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1005
|
+
Connecting to database specified by database.yml
|
1006
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1007
|
+
Migrating to CreateMyreplicatorExports (20121101005108)
|
1008
|
+
[1m[35m (25.9ms)[0m CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
1009
|
+
[1m[36m (48.9ms)[0m [1mCREATE UNIQUE INDEX `unique_index` ON `myreplicator_exports` (`source_schema`, `destination_schema`, `table_name`)[0m
|
1010
|
+
[1m[35m (9.7ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20121101005108')
|
1011
|
+
Migrating to SampleData (20121101005152)
|
1012
|
+
Connecting to database specified by database.yml
|
1013
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1014
|
+
Migrating to CreateMyreplicatorExports (20121101005108)
|
1015
|
+
Migrating to SampleData (20121101005152)
|
1016
|
+
[1m[35m (10.3ms)[0m drop table if EXISTS myreplicator.my_test
|
1017
|
+
[1m[36m (21.4ms)[0m [1m
|
1018
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
1019
|
+
`id` INT NULL AUTO_INCREMENT ,
|
1020
|
+
`desc` VARCHAR(45) NULL ,
|
1021
|
+
`updated_at` DATETIME NULL ,
|
1022
|
+
PRIMARY KEY (`id`) );
|
1023
|
+
|
1024
|
+
[0m
|
1025
|
+
[1m[35m (9.5ms)[0m INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');
|
1026
|
+
[1m[36m (8.4ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (2, '2', '2012-10-31 10:11:00');[0m
|
1027
|
+
[1m[35m (6.7ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20121101005152')
|
1028
|
+
[1m[36m (0.2ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1029
|
+
Connecting to database specified by database.yml
|
1030
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1031
|
+
[1m[35mMyreplicator::Export Load (0.5ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
1032
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1033
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:32:37', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:32:37')
|
1034
|
+
[1m[36m (7.1ms)[0m [1mCOMMIT[0m
|
1035
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
1036
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1037
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:32:37', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:32:37')
|
1038
|
+
[1m[36m (8.9ms)[0m [1mCOMMIT[0m
|
1039
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
1040
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
1041
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1042
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
1043
|
+
[1m[35m (8.1ms)[0m COMMIT
|
1044
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
1045
|
+
Connecting to database specified by database.yml
|
1046
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1047
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
1048
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1049
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:34:19', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:34:19')
|
1050
|
+
[1m[36m (9.2ms)[0m [1mCOMMIT[0m
|
1051
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
1052
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1053
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:34:19', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:34:19')
|
1054
|
+
[1m[36m (10.8ms)[0m [1mCOMMIT[0m
|
1055
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
1056
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
1057
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1058
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
1059
|
+
[1m[35m (9.9ms)[0m COMMIT
|
1060
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
1061
|
+
Connecting to database specified by database.yml
|
1062
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1063
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
1064
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1065
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:34:54', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:34:54')
|
1066
|
+
[1m[36m (9.0ms)[0m [1mCOMMIT[0m
|
1067
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
1068
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1069
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:34:54', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:34:54')
|
1070
|
+
[1m[36m (8.4ms)[0m [1mCOMMIT[0m
|
1071
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
1072
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
1073
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1074
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
1075
|
+
[1m[35m (8.7ms)[0m COMMIT
|
1076
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
1077
|
+
Connecting to database specified by database.yml
|
1078
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1079
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
1080
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1081
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:35:35', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:35:35')
|
1082
|
+
[1m[36m (18.3ms)[0m [1mCOMMIT[0m
|
1083
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
1084
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1085
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:35:35', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:35:35')
|
1086
|
+
[1m[36m (10.8ms)[0m [1mCOMMIT[0m
|
1087
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
1088
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
1089
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1090
|
+
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
1091
|
+
[1m[35m (10.1ms)[0m COMMIT
|
1092
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
1093
|
+
Connecting to database specified by database.yml
|
1094
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1095
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
1096
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
1097
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:36:30', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:36:30')
|
1098
|
+
[1m[36m (13.8ms)[0m [1mCOMMIT[0m
|
1099
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
1100
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1101
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:36:30', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:36:30')
|
1102
|
+
[1m[36m (6.3ms)[0m [1mCOMMIT[0m
|
1103
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
1104
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
1105
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1106
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
1107
|
+
[1m[35m (7.9ms)[0m COMMIT
|
1108
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
1109
|
+
Connecting to database specified by database.yml
|
1110
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1111
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
1112
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1113
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:36:42', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:36:42')
|
1114
|
+
[1m[36m (8.4ms)[0m [1mCOMMIT[0m
|
1115
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
1116
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
1117
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:36:42', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:36:42')
|
1118
|
+
[1m[36m (7.2ms)[0m [1mCOMMIT[0m
|
1119
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
1120
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
1121
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1122
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
1123
|
+
[1m[35m (6.7ms)[0m COMMIT
|
1124
|
+
[1m[36m (0.1ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
1125
|
+
Connecting to database specified by database.yml
|
1126
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1127
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
1128
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1129
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:39:09', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:39:09')
|
1130
|
+
[1m[36m (7.5ms)[0m [1mCOMMIT[0m
|
1131
|
+
Connecting to database specified by database.yml
|
1132
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1133
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
1134
|
+
[1m[36mMyreplicator::Export Load (0.4ms)[0m [1mSELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1[0m
|
1135
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1136
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:39:26', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:39:26')[0m
|
1137
|
+
[1m[35m (10.6ms)[0m COMMIT
|
1138
|
+
[1m[36m (0.3ms)[0m [1mSELECT @@FOREIGN_KEY_CHECKS[0m
|
1139
|
+
[1m[35m (0.2ms)[0m SET FOREIGN_KEY_CHECKS = 0
|
1140
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1141
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM `myreplicator_exports`
|
1142
|
+
[1m[36m (6.8ms)[0m [1mCOMMIT[0m
|
1143
|
+
[1m[35m (0.2ms)[0m SET FOREIGN_KEY_CHECKS = 1
|
1144
|
+
Connecting to database specified by database.yml
|
1145
|
+
[1m[36m (1.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1146
|
+
[1m[35mMyreplicator::Export Load (0.4ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'my_test' LIMIT 1
|
1147
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1148
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:41:03', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:41:03')
|
1149
|
+
[1m[36m (11.0ms)[0m [1mCOMMIT[0m
|
1150
|
+
[1m[35mMyreplicator::Export Load (0.3ms)[0m SELECT `myreplicator_exports`.* FROM `myreplicator_exports` WHERE `myreplicator_exports`.`table_name` = 'unavailable_table' LIMIT 1
|
1151
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1152
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:41:03', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:41:03')
|
1153
|
+
[1m[36m (8.5ms)[0m [1mCOMMIT[0m
|
1154
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
1155
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
1156
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1157
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
1158
|
+
[1m[35m (9.7ms)[0m COMMIT
|
1159
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
1160
|
+
Connecting to database specified by database.yml
|
1161
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1162
|
+
Connecting to database specified by database.yml
|
1163
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1164
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1165
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:41:54', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:41:54')[0m
|
1166
|
+
[1m[35m (12.6ms)[0m COMMIT
|
1167
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1168
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:41:54', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:41:54')
|
1169
|
+
[1m[36m (8.5ms)[0m [1mCOMMIT[0m
|
1170
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
1171
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
1172
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1173
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
1174
|
+
[1m[35m (8.5ms)[0m COMMIT
|
1175
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
1176
|
+
Connecting to database specified by database.yml
|
1177
|
+
Mysql2::Error: Duplicate entry 'myreplicator-dummy-my_t' for key 'unique_index': INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:42:47', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_t', '2012-11-05 18:42:47')
|
1178
|
+
Connecting to database specified by database.yml
|
1179
|
+
Connecting to database specified by database.yml
|
1180
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1181
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1182
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:44:52', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'my_test', '2012-11-05 18:44:52')[0m
|
1183
|
+
[1m[35m (7.3ms)[0m COMMIT
|
1184
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1185
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `myreplicator_exports` (`active`, `created_at`, `cron`, `destination_schema`, `error`, `export_to`, `export_type`, `incremental_column`, `incremental_column_type`, `last_run`, `max_incremental_value`, `s3_path`, `source_schema`, `state`, `table_name`, `updated_at`) VALUES (1, '2012-11-05 18:44:52', '2 * * * *', 'dummy', NULL, 'destination_db', 'incremental', 'updated_at', NULL, NULL, NULL, NULL, 'myreplicator', NULL, 'unavailable_table', '2012-11-05 18:44:52')
|
1186
|
+
[1m[36m (10.2ms)[0m [1mCOMMIT[0m
|
1187
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
1188
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
1189
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1190
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM `myreplicator_exports`[0m
|
1191
|
+
[1m[35m (9.2ms)[0m COMMIT
|
1192
|
+
[1m[36m (0.3ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
1193
|
+
Connecting to database specified by database.yml
|
1194
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1195
|
+
Connecting to database specified by database.yml
|
1196
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1197
|
+
[1m[35m (23.9ms)[0m DROP DATABASE IF EXISTS `dummy`
|
1198
|
+
[1m[36m (1.4ms)[0m [1mCREATE DATABASE `dummy` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`[0m
|
1199
|
+
[1m[35m (34.1ms)[0m CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `last_run` datetime, `state` varchar(255), `error` varchar(255), `active` tinyint(1) DEFAULT 1, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
1200
|
+
[1m[36m (50.2ms)[0m [1mCREATE UNIQUE INDEX `unique_index` ON `myreplicator_exports` (`source_schema`, `destination_schema`, `table_name`)[0m
|
1201
|
+
[1m[35m (24.4ms)[0m CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
|
1202
|
+
[1m[36m (50.9ms)[0m [1mCREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)[0m
|
1203
|
+
[1m[35m (0.3ms)[0m SELECT version FROM `schema_migrations`
|
1204
|
+
[1m[36m (8.4ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20121101005152')[0m
|
1205
|
+
[1m[35m (8.5ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20121101005108')
|
1206
|
+
Connecting to database specified by database.yml
|
1207
|
+
[1m[36m (1.2ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1208
|
+
Connecting to database specified by database.yml
|
1209
|
+
[1m[36m (1.0ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1210
|
+
Connecting to database specified by database.yml
|
1211
|
+
Connecting to database specified by database.yml
|
1212
|
+
Connecting to database specified by database.yml
|
1213
|
+
Connecting to database specified by database.yml
|
1214
|
+
Connecting to database specified by database.yml
|
1215
|
+
Connecting to database specified by database.yml
|
1216
|
+
[1m[36m (1.3ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1217
|
+
Migrating to SampleData (20121101005152)
|
1218
|
+
Migrating to CreateMyreplicatorExports (20121113180411)
|
1219
|
+
[1m[35m (0.5ms)[0m CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `state` varchar(255) DEFAULT 'new', `error` text, `active` tinyint(1) DEFAULT 1, `export_started_at` datetime, `export_finished_at` datetime, `load_finished_at` datetime, `transfer_started_at` datetime, `transfer_finished_at` datetime, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
1220
|
+
Mysql2::Error: Table 'myreplicator_exports' already exists: CREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `state` varchar(255) DEFAULT 'new', `error` text, `active` tinyint(1) DEFAULT 1, `export_started_at` datetime, `export_finished_at` datetime, `load_finished_at` datetime, `transfer_started_at` datetime, `transfer_finished_at` datetime, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
1221
|
+
Connecting to database specified by database.yml
|
1222
|
+
[1m[36m (1.2ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1223
|
+
Migrating to SampleData (20121101005152)
|
1224
|
+
[1m[35m (0.2ms)[0m drop table if EXISTS myreplicator.my_test
|
1225
|
+
[1m[36m (29.2ms)[0m [1m
|
1226
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
1227
|
+
`id` INT NULL AUTO_INCREMENT ,
|
1228
|
+
`desc` VARCHAR(45) NULL ,
|
1229
|
+
`updated_at` DATETIME NULL ,
|
1230
|
+
PRIMARY KEY (`id`) );
|
1231
|
+
|
1232
|
+
[0m
|
1233
|
+
[1m[35m (11.7ms)[0m INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');
|
1234
|
+
[1m[36m (9.3ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (2, '2', '2012-10-31 10:11:00');[0m
|
1235
|
+
[1m[35m (9.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20121101005152')
|
1236
|
+
Migrating to CreateMyreplicatorExports (20121113180411)
|
1237
|
+
[1m[36m (22.2ms)[0m [1mCREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `state` varchar(255) DEFAULT 'new', `error` text, `active` tinyint(1) DEFAULT 1, `export_started_at` datetime, `export_finished_at` datetime, `load_finished_at` datetime, `transfer_started_at` datetime, `transfer_finished_at` datetime, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
1238
|
+
[1m[35m (50.2ms)[0m CREATE UNIQUE INDEX `unique_index` ON `myreplicator_exports` (`source_schema`, `destination_schema`, `table_name`)
|
1239
|
+
[1m[36m (9.4ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121113180411')[0m
|
1240
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
1241
|
+
Connecting to database specified by database.yml
|
1242
|
+
Connecting to database specified by database.yml
|
1243
|
+
Connecting to database specified by database.yml
|
1244
|
+
Connecting to database specified by database.yml
|
1245
|
+
Connecting to database specified by database.yml
|
1246
|
+
Connecting to database specified by database.yml
|
1247
|
+
Connecting to database specified by database.yml
|
1248
|
+
Connecting to database specified by database.yml
|
1249
|
+
Connecting to database specified by database.yml
|
1250
|
+
Connecting to database specified by database.yml
|
1251
|
+
Connecting to database specified by database.yml
|
1252
|
+
Connecting to database specified by database.yml
|
1253
|
+
Connecting to database specified by database.yml
|
1254
|
+
Connecting to database specified by database.yml
|
1255
|
+
Connecting to database specified by database.yml
|
1256
|
+
Connecting to database specified by database.yml
|
1257
|
+
Connecting to database specified by database.yml
|
1258
|
+
Connecting to database specified by database.yml
|
1259
|
+
Connecting to database specified by database.yml
|
1260
|
+
Connecting to database specified by database.yml
|
1261
|
+
Connecting to database specified by database.yml
|
1262
|
+
Connecting to database specified by database.yml
|
1263
|
+
Connecting to database specified by database.yml
|
1264
|
+
Connecting to database specified by database.yml
|
1265
|
+
Connecting to database specified by database.yml
|
1266
|
+
Connecting to database specified by database.yml
|
1267
|
+
Connecting to database specified by database.yml
|
1268
|
+
Connecting to database specified by database.yml
|
1269
|
+
Connecting to database specified by database.yml
|
1270
|
+
Connecting to database specified by database.yml
|
1271
|
+
Connecting to database specified by database.yml
|
1272
|
+
[1m[36m (2.5ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
1273
|
+
Migrating to SampleData (20121101005152)
|
1274
|
+
[1m[35m (38.7ms)[0m drop table if EXISTS myreplicator.my_test
|
1275
|
+
[1m[36m (36.3ms)[0m [1m
|
1276
|
+
CREATE TABLE IF NOT EXISTS `myreplicator`.`my_test` (
|
1277
|
+
`id` INT NULL AUTO_INCREMENT ,
|
1278
|
+
`desc` VARCHAR(45) NULL ,
|
1279
|
+
`updated_at` DATETIME NULL ,
|
1280
|
+
PRIMARY KEY (`id`) );
|
1281
|
+
|
1282
|
+
[0m
|
1283
|
+
[1m[35m (9.5ms)[0m INSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (1, 'test 1', '2012-10-31 10:10:00');
|
1284
|
+
[1m[36m (7.1ms)[0m [1mINSERT INTO `myreplicator`.`my_test` (`id`, `desc`, `updated_at`) VALUES (2, '2', '2012-10-31 10:11:00');[0m
|
1285
|
+
[1m[35m (8.9ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20121101005152')
|
1286
|
+
Migrating to CreateMyreplicatorExports (20121115194022)
|
1287
|
+
[1m[36m (23.3ms)[0m [1mCREATE TABLE `myreplicator_exports` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `source_schema` varchar(255), `destination_schema` varchar(255), `table_name` varchar(255), `incremental_column` varchar(255), `max_incremental_value` varchar(255), `incremental_column_type` varchar(255), `export_to` varchar(255) DEFAULT 'destination_db', `export_type` varchar(255) DEFAULT 'incremental', `s3_path` varchar(255), `cron` varchar(255), `state` varchar(255) DEFAULT 'new', `error` text, `active` tinyint(1) DEFAULT 1, `exporter_pid` int(11), `transporter_pid` int(11), `loader_pid` int(11), `export_started_at` datetime, `export_finished_at` datetime, `load_started_at` datetime, `load_finished_at` datetime, `transfer_started_at` datetime, `transfer_finished_at` datetime, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
1288
|
+
[1m[35m (48.1ms)[0m CREATE UNIQUE INDEX `unique_index` ON `myreplicator_exports` (`source_schema`, `destination_schema`, `table_name`)
|
1289
|
+
[1m[36m (12.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121115194022')[0m
|
1290
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
1291
|
+
Connecting to database specified by database.yml
|
1292
|
+
Connecting to database specified by database.yml
|
1293
|
+
Connecting to database specified by database.yml
|
1294
|
+
Connecting to database specified by database.yml
|
1295
|
+
Connecting to database specified by database.yml
|
1296
|
+
Connecting to database specified by database.yml
|
1297
|
+
Connecting to database specified by database.yml
|
1298
|
+
Connecting to database specified by database.yml
|
1299
|
+
Connecting to database specified by database.yml
|
1300
|
+
Connecting to database specified by database.yml
|
1301
|
+
Connecting to database specified by database.yml
|
1302
|
+
Connecting to database specified by database.yml
|
1303
|
+
Connecting to database specified by database.yml
|
1304
|
+
Connecting to database specified by database.yml
|
1305
|
+
Connecting to database specified by database.yml
|
1306
|
+
Connecting to database specified by database.yml
|
1307
|
+
Connecting to database specified by database.yml
|
1308
|
+
Connecting to database specified by database.yml
|
1309
|
+
Connecting to database specified by database.yml
|
1310
|
+
Connecting to database specified by database.yml
|
1311
|
+
Connecting to database specified by database.yml
|
1312
|
+
Connecting to database specified by database.yml
|
1313
|
+
Connecting to database specified by database.yml
|
1314
|
+
Connecting to database specified by database.yml
|
1315
|
+
Connecting to database specified by database.yml
|
1316
|
+
Connecting to database specified by database.yml
|
1317
|
+
Connecting to database specified by database.yml
|
1318
|
+
Connecting to database specified by database.yml
|
1319
|
+
Connecting to database specified by database.yml
|
1320
|
+
Connecting to database specified by database.yml
|
1321
|
+
Connecting to database specified by database.yml
|
1322
|
+
Connecting to database specified by database.yml
|
1323
|
+
Connecting to database specified by database.yml
|
1324
|
+
Connecting to database specified by database.yml
|
1325
|
+
Connecting to database specified by database.yml
|
1326
|
+
Connecting to database specified by database.yml
|
1327
|
+
Connecting to database specified by database.yml
|
1328
|
+
Connecting to database specified by database.yml
|
1329
|
+
Connecting to database specified by database.yml
|
1330
|
+
Connecting to database specified by database.yml
|
1331
|
+
Connecting to database specified by database.yml
|
1332
|
+
Connecting to database specified by database.yml
|
1333
|
+
Connecting to database specified by database.yml
|
1334
|
+
Connecting to database specified by database.yml
|
1335
|
+
Connecting to database specified by database.yml
|
1336
|
+
Connecting to database specified by database.yml
|
1337
|
+
Connecting to database specified by database.yml
|
1338
|
+
Connecting to database specified by database.yml
|
1339
|
+
Connecting to database specified by database.yml
|
1340
|
+
Connecting to database specified by database.yml
|
1341
|
+
Connecting to database specified by database.yml
|
1342
|
+
Connecting to database specified by database.yml
|
1343
|
+
Connecting to database specified by database.yml
|
1344
|
+
Connecting to database specified by database.yml
|
1345
|
+
Connecting to database specified by database.yml
|
1346
|
+
Connecting to database specified by database.yml
|
1347
|
+
Connecting to database specified by database.yml
|
1348
|
+
Connecting to database specified by database.yml
|
1349
|
+
Connecting to database specified by database.yml
|
1350
|
+
Connecting to database specified by database.yml
|
1351
|
+
Connecting to database specified by database.yml
|
1352
|
+
Connecting to database specified by database.yml
|
1353
|
+
Connecting to database specified by database.yml
|
1354
|
+
Connecting to database specified by database.yml
|
1355
|
+
Connecting to database specified by database.yml
|
1356
|
+
Connecting to database specified by database.yml
|
1357
|
+
Connecting to database specified by database.yml
|
1358
|
+
Connecting to database specified by database.yml
|
1359
|
+
Connecting to database specified by database.yml
|
1360
|
+
Connecting to database specified by database.yml
|
1361
|
+
Connecting to database specified by database.yml
|
1362
|
+
Connecting to database specified by database.yml
|
1363
|
+
Connecting to database specified by database.yml
|
1364
|
+
Connecting to database specified by database.yml
|