Skip to content

Commit 55633b4

Browse files
committed
Merge branch 'tzhang-si-readme' of github.com:snowflakedb/snowflake-ingest-java into tzhang-si-readme
2 parents fcddeee + 790a563 commit 55633b4

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

README.md

+4-8
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ dependencies {
6565
## Jar Versions
6666

6767
The Snowflake Ingest SDK provides shaded and unshaded versions of its jar. The shaded version bundles the dependencies
68-
into its own jar,
69-
whereas the unshaded version declares its dependencies in `pom.xml`, which are fetched as standard transitive
68+
into its own jar, whereas the unshaded version declares its dependencies in `pom.xml`, which are fetched as standard transitive
7069
dependencies by the build system like Maven or Gradle.
7170
The shaded JAR can help avoid potential dependency conflicts, but the unshaded version provides finer graned control
7271
over transitive dependencies.
@@ -107,12 +106,9 @@ Check out `SnowflakeStreamingIngestExample.java`, which performs following opera
107106
queries to create them:
108107

109108
```sql
110-
create
111-
or replace database MY_DATABASE;
112-
create
113-
or replace schema MY_SCHEMA;
114-
create
115-
or replace table MY_TABLE(c1 number);
109+
create or replace database MY_DATABASE;
110+
create or replace schema MY_SCHEMA;
111+
create or replace table MY_TABLE(c1 number);
116112
```
117113

118114
4. Inserts 1000 rows into the channel created in 3rd step using the `insertRows` API on the Channel object

0 commit comments

Comments
 (0)