Skip to content

Commit

Permalink
fix: remove references to deprecated --experimental flag (sqlc-dev#…
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmbenton authored Aug 2, 2023
1 parent 7cd8b34 commit 2c5fbdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/guides/using-go-and-pgx.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Generating the code will now give you pgx-compatible database access methods.

.. code-block:: bash
sqlc generate --experimental
sqlc generate
^^^^^^^^^^^^^^^^^^^^^^^^^^
Generated code walkthrough
Expand Down
2 changes: 1 addition & 1 deletion scripts/regenerate/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func regenerate(dir string) error {
expectFailure = true
}

cmd := exec.Command("sqlc-dev", "generate", "--experimental")
cmd := exec.Command("sqlc-dev", "generate")
cmd.Dir = cwd
out, failed := cmd.CombinedOutput()
if failed != nil && !expectFailure {
Expand Down

0 comments on commit 2c5fbdd

Please sign in to comment.