Skip to content

Commit

Permalink
add session track type constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Sidorov committed Aug 19, 2019
1 parent c3ccd42 commit 46744ca
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/constants/session_track.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
exports.SYSTEM_VARIABLES = 0;
exports.SCHEMA = 1;
exports.STATE_CHANGE = 2;
exports.STATE_GTIDS = 3;
exports.TRANSACTION_CHARACTERISTICS = 4;
exports.TRANSACTION_STATE = 5;

exports.FIRST_KEY = exports.SYSTEM_VARIABLES;
exports.LAST_KEY = exports.TRANSACTION_STATE;

0 comments on commit 46744ca

Please sign in to comment.