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
Using worker: worker-linux-9-1.bb.travis-ci.org:travis-linux-10 | |
$ git clone --depth=50 git://github.com/gocql/gocql.git gocql/gocql | |
Cloning into 'gocql/gocql'... | |
remote: Counting objects: 647, done. | |
remote: Compressing objects: 100% (348/348), done. | |
remote: Total 647 (delta 385), reused 550 (delta 298) | |
Receiving objects: 100% (647/647), 270.06 KiB | 0 bytes/s, done. | |
Resolving deltas: 100% (385/385), done. | |
Checking connectivity... done. |
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
Using worker: worker-linux-11-2.bb.travis-ci.org:travis-linux-2 | |
$ git clone --depth=50 git://github.com/gocql/gocql.git gocql/gocql | |
Cloning into 'gocql/gocql'... | |
remote: Counting objects: 652, done. | |
remote: Compressing objects: 100% (347/347), done. | |
remote: Total 652 (delta 388), reused 558 (delta 304) | |
Receiving objects: 100% (652/652), 271.73 KiB | 0 bytes/s, done. | |
Resolving deltas: 100% (388/388), done. | |
Checking connectivity... done. |
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
public <T> T execute(Function<DSLContext,T> fun) { | |
T result = null; | |
Connection connection = null; | |
DatabaseException userException = null; | |
try { | |
connection = dataSource.getConnection(); | |
connection.setAutoCommit(false); |
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
package main | |
import ( | |
"github.com/tux21b/gocql" | |
"log" | |
) | |
// create table foo ( | |
// bar bigint, | |
// baz ascii, |
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
package foo | |
import org.apache.lucene.document.Document | |
import org.apache.lucene.document.Field | |
import com.eaio.uuid.UUID | |
import org.apache.lucene.store.FSDirectory | |
import java.io.File | |
import org.apache.lucene.index.IndexWriter | |
import org.apache.lucene.analysis.WhitespaceAnalyzer |
NewerOlder