File tree 1 file changed +4
-8
lines changed
1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,7 @@ dependencies {
65
65
## Jar Versions
66
66
67
67
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
70
69
dependencies by the build system like Maven or Gradle.
71
70
The shaded JAR can help avoid potential dependency conflicts, but the unshaded version provides finer graned control
72
71
over transitive dependencies.
@@ -107,12 +106,9 @@ Check out `SnowflakeStreamingIngestExample.java`, which performs following opera
107
106
queries to create them:
108
107
109
108
``` 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 );
116
112
```
117
113
118
114
4 . Inserts 1000 rows into the channel created in 3rd step using the ` insertRows ` API on the Channel object
You can’t perform that action at this time.
0 commit comments