Demo for query storing

Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/util.promisify/shim.js b/node_modules/util.promisify/shim.js
new file mode 100644
index 0000000..eca1524
--- /dev/null
+++ b/node_modules/util.promisify/shim.js
@@ -0,0 +1,17 @@
+'use strict';
+
+var util = require('util');
+var getPolyfill = require('./polyfill');
+
+module.exports = function shimUtilPromisify() {
+	var polyfill = getPolyfill();
+	if (polyfill !== util.promisify) {
+		Object.defineProperty(util, 'promisify', {
+			configurable: true,
+			enumerable: true,
+			value: polyfill,
+			writable: true
+		});
+	}
+	return polyfill;
+};