Skip to content

Commit

Permalink
Removed erroneous --permissions flag from export example
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrudin committed Nov 7, 2024
1 parent 9243bc4 commit 47ba8ad
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/export/export-rows.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ a notional example of doing so:
```
./bin/flux export-jdbc \
--connection-string "flux-example-user:password@localhost:8004" \
--permissions flux-example-role,read,flux-example-role,update \
--query "op.fromView('example', 'employee', '')" \
--jdbc-url "jdbc:postgresql://localhost/example?user=postgres&password=postgres" \
--jdbc-driver "org.postgresql.Driver" \
Expand All @@ -76,7 +75,6 @@ a notional example of doing so:
```
bin\flux export-jdbc ^
--connection-string "flux-example-user:password@localhost:8004" ^
--permissions flux-example-role,read,flux-example-role,update ^
--query "op.fromView('example', 'employee', '')" ^
--jdbc-url "jdbc:postgresql://localhost/example?user=postgres&password=postgres" ^
--jdbc-driver "org.postgresql.Driver" ^
Expand Down Expand Up @@ -312,7 +310,7 @@ location where data already exists. This option supports the following values:
For convenience, the above values are case-sensitive so that you can ignore casing when choosing a value.

As of the 1.1.0 release of Flux, `--mode` defaults to `Append` for commands that write to a filesystem. In the 1.0.0
release, these commands defaulted to `Overwrite`. The `export-jdbc` command defaults to `ErrorIfExists` avoid altering
release, these commands defaulted to `Overwrite`. The `export-jdbc` command defaults to `ErrorIfExists` to avoid altering
an existing table in any way.

For further information on each mode, please see
Expand Down

0 comments on commit 47ba8ad

Please sign in to comment.