This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE _test_1 ( | |
a varchar(64)); | |
CREATE TABLE _test_2 ( | |
b varchar(64)); | |
INSERT INTO _test_1 (a) | |
VALUES ('john'), | |
('sue'), | |
('bob'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$elements = array(); | |
//// | |
// An array of 10,000 elements with random string values | |
//// | |
for($i = 0; $i < 10000; $i++) { | |
$elements[] = (string)rand(10000000, 99999999); | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var FN = (function(Object, String) { | |
'use strict'; | |
var undefined, | |
create = Object.create, | |
keys = Object.keys, | |
getOwnPropertyNames = Object.getOwnPropertyNames, | |
getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor, |