Skip to content

Commit 65f4705

Browse files
committedJan 11, 2015
ZongJi module updated, 5.6 support ready
1 parent 55ba0e0 commit 65f4705

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed
 

‎README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ Built using the [`zongji` Binlog Tailer](https://github.com/nevill/zongji) and [
77
* [Example Application using Express, SockJS and React](https://github.com/numtel/reactive-mysql-example)
88
* [Meteor package for reactive MySQL](https://github.com/numtel/meteor-mysql)
99

10-
## Under construction
11-
12-
This package has only been tested to work in MySQL 5.5.40.
13-
14-
Support for MySQL 5.6 is currently underway.
10+
This package has been tested to work in MySQL 5.5.40 and 5.6.19. Expected support is all MySQL server version >= 5.1.15.
1511

1612
## Installation
1713

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mysql-live-select",
3-
"version": "0.0.10",
3+
"version": "0.0.11",
44
"description": "Live updating MySQL SELECT statements",
55
"main": "lib/LiveMysql.js",
66
"repository": "https://github.com/numtel/mysql-live-select",

‎test/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -189,14 +189,12 @@ module.exports = {
189189
});
190190
},
191191
error_invalid_query: function(test){
192-
var table = 'error_no_db';
192+
var table = 'error_invalid_query';
193193
server.on('ready', function(conn, esc, escId, queries){
194194
querySequence(conn.db, [
195195
'DROP TABLE IF EXISTS ' + escId(table),
196196
'CREATE TABLE ' + escId(table) + ' (col INT UNSIGNED)',
197-
'INSERT INTO ' + escId(table) + ' (col) VALUES (10)',
198197
], function(results){
199-
200198
conn.select('SELECT notcol FROM ' + escId(table), [ {
201199
table: table,
202200
database: server.database

0 commit comments

Comments
 (0)
Please sign in to comment.