-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Java JDBC: Use explicit schema name
testdrive
Otherwise, resources would be created within the `crate` schema, which might be unfortunate when users are copying the examples. The intention of the micro examples is to show users best practices.
- Loading branch information
Showing
4 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
test: | ||
mvn exec:java -Dexec.args="--dburl 'jdbc:postgresql://localhost:5432/'" | ||
mvn exec:java -Dexec.args="--dburl 'jdbc:crate://localhost:5432/'" | ||
mvn exec:java -Dexec.args="--dburl 'jdbc:postgresql://localhost:5432/testdrive'" | ||
mvn exec:java -Dexec.args="--dburl 'jdbc:crate://localhost:5432/testdrive'" |
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
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
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