Skip to content

Commit e81aa03

Browse files
github-automation-metabaseMetabase Docs bot
andauthored
[auto] adding content to docs/auto-update-master-2025-09-01-013216->master (#546)
Co-authored-by: Metabase Docs bot <[email protected]>
1 parent 51cf815 commit e81aa03

File tree

4 files changed

+37
-2
lines changed

4 files changed

+37
-2
lines changed

_docs/master/api.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1835,7 +1835,8 @@
18351835
},
18361836
"schema" : {
18371837
"anyOf" : [ {
1838-
"type" : "string"
1838+
"type" : "string",
1839+
"minLength" : 1
18391840
}, {
18401841
"type" : "null"
18411842
} ]
@@ -2392,6 +2393,13 @@
23922393
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.today"
23932394
} ]
23942395
},
2396+
"metabase.legacy-mbql.schema.Emptyable" : {
2397+
"anyOf" : [ {
2398+
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.StringExpressionArg"
2399+
}, {
2400+
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.field-or-expression-ref"
2401+
} ]
2402+
},
23952403
"metabase.legacy-mbql.schema.EqualityComparable" : {
23962404
"anyOf" : [ {
23972405
"type" : "boolean"

_docs/master/troubleshooting-guide/db-connection.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,16 @@ psql -h HOSTNAME -p PORT -d DATABASENAME -U DATABASEUSER
113113
SELECT 1
114114
```
115115

116+
## Snowflake error when running via JAR file
117+
118+
If you're connecting to Snowflake and encounter an error like, `JDBC driver internal error: exception creating result` and are running from the JAR file, add `--add-opens java.base/java.nio=ALL-UNNAMED` to your `java` command:
119+
120+
```
121+
java --add-opens java.base/java.nio=ALL-UNNAMED -jar metabase.jar
122+
```
123+
124+
See the docs on [running the Metabase jar file](../installation-and-operation/running-the-metabase-jar-file).
125+
116126
## Related problems
117127

118128
- [My connection or query is timing out](./timeout).

_site/docs/master/api.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1918,7 +1918,8 @@
19181918
},
19191919
"schema" : {
19201920
"anyOf" : [ {
1921-
"type" : "string"
1921+
"type" : "string",
1922+
"minLength" : 1
19221923
}, {
19231924
"type" : "null"
19241925
} ]
@@ -2475,6 +2476,13 @@
24752476
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.today"
24762477
} ]
24772478
},
2479+
"metabase.legacy-mbql.schema.Emptyable" : {
2480+
"anyOf" : [ {
2481+
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.StringExpressionArg"
2482+
}, {
2483+
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.field-or-expression-ref"
2484+
} ]
2485+
},
24782486
"metabase.legacy-mbql.schema.EqualityComparable" : {
24792487
"anyOf" : [ {
24802488
"type" : "boolean"

_site/docs/master/troubleshooting-guide/db-connection.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4954,6 +4954,15 @@ <h3 id="testing-the-connection-status">Testing the connection status</h3>
49544954
</li>
49554955
</ol>
49564956

4957+
<h2 id="snowflake-error-when-running-via-jar-file">Snowflake error when running via JAR file</h2>
4958+
4959+
<p>If you’re connecting to Snowflake and encounter an error like, <code class="language-plaintext highlighter-rouge">JDBC driver internal error: exception creating result</code> and are running from the JAR file, add <code class="language-plaintext highlighter-rouge">--add-opens java.base/java.nio=ALL-UNNAMED</code> to your <code class="language-plaintext highlighter-rouge">java</code> command:</p>
4960+
4961+
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>java --add-opens java.base/java.nio=ALL-UNNAMED -jar metabase.jar
4962+
</code></pre></div></div>
4963+
4964+
<p>See the docs on <a href="../installation-and-operation/running-the-metabase-jar-file">running the Metabase jar file</a>.</p>
4965+
49574966
<h2 id="related-problems">Related problems</h2>
49584967

49594968
<ul>

0 commit comments

Comments
 (0)