GithubHelp home page GithubHelp logo

homebrew-tap's People

Contributors

fabriziomello avatar jnidzwetzki avatar jonatas avatar joyvuu-dave avatar juntalis avatar konskov avatar leehampton avatar raphaelbauer avatar robatticus avatar rtwalker avatar silsha avatar svenklemm avatar syvb avatar thatzopoulos avatar vineethreddy02 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

homebrew-tap's Issues

Update to timescaledb-tools breaks install

Hi,

the update that was introduced today in 2d5e96c breaks the installer. Looking at timescaledb-tools-0.14.3-darwin.tgz it seems that timescaledb-parallel-copy has been renamed to parallel-copy in the latest version and thus the tests don't work anymore:

$ brew install timescaledb
==> Fetching dependencies for timescale/tap/timescaledb: timescaledb-tools
==> Fetching timescale/tap/timescaledb-tools
==> Downloading https://github.com/timescale/timescaledb-tune/releases/download/v0.14.3/timescaledb-tools-0.14.3-darwin.
Already downloaded: /Users/klaustopher/Library/Caches/Homebrew/downloads/698563491d8bb2e60ca87cabef4a79a4aca1bdf13b2c636aaebe26e1e6665e96--timescaledb-tools-0.14.3-darwin.tgz
==> Fetching timescale/tap/timescaledb
==> Downloading https://github.com/timescale/timescaledb/archive/refs/tags/2.9.0.tar.gz
Already downloaded: /Users/klaustopher/Library/Caches/Homebrew/downloads/28ec83499ffaec58fa5fc8c975b781c5b00e3111e99fff4d48c6ca33b412d206--timescaledb-2.9.0.tar.gz
==> Installing timescaledb from timescale/tap
==> Installing dependencies for timescale/tap/timescaledb: timescaledb-tools
==> Installing timescale/tap/timescaledb dependency: timescaledb-tools
Error: An exception occurred within a child process:
  Errno::ENOENT: No such file or directory - timescaledb-parallel-copy

I did this local change, and the repo works:

diff --git a/timescaledb-tools.rb b/timescaledb-tools.rb
index 522fd48..d05ceaa 100644
--- a/timescaledb-tools.rb
+++ b/timescaledb-tools.rb
@@ -7,11 +7,11 @@ class TimescaledbTools < Formula

   def install
     bin.install "timescaledb-tune"
-    bin.install "timescaledb-parallel-copy"
+    bin.install "parallel-copy"
   end

   test do
     system "timescaledb-tune", "--version"
-    system "timescaledb-parallel-copy", "--version"
+    system "parallel-copy", "--version"
   end
 end

upgrading brew breaks 12 to 13

now that brew randomly decided to upgrade postgresql again from 12 to 13 this time - timescale is once again broken...

brew postgresql-upgrade-database --verbose --debug
/usr/local/Homebrew/Library/Homebrew/brew.rb (Formulary::FormulaLoader): loading /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/postgresql.rb
==> Upgrading postgresql data from 12 to 13...
/usr/local/Cellar/postgresql@12/12.7/bin/pg_ctl -w -D /usr/local/var/postgres start
waiting for server to start....2021-06-13 12:07:09.777 EDT [67953] FATAL:  could not access file "timescaledb": No such file or directory
2021-06-13 12:07:09.777 EDT [67953] LOG:  database system is shut down
 stopped waiting
pg_ctl: could not start server
Examine the log output.
==> Moving postgresql data from /usr/local/var/postgres to /usr/local/var/postgres.old...
==> Creating database...
/usr/local/opt/postgresql/bin/initdb /usr/local/var/postgres
The files belonging to this database system will be owned by user "taf2".
This user must also own the server process.

The database cluster will be initialized with locale "en_US.UTF-8".
The default database encoding has accordingly been set to "UTF8".
The default text search configuration will be set to "english".

Data page checksums are disabled.

fixing permissions on existing directory /usr/local/var/postgres ... ok
creating subdirectories ... ok
selecting dynamic shared memory implementation ... posix
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting default time zone ... America/New_York
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... ok
syncing data to disk ... ok

initdb: warning: enabling "trust" authentication for local connections
You can change this by editing pg_hba.conf or using the option -A, or
--auth-local and --auth-host, the next time you run initdb.

Success. You can now start the database server using:

    /usr/local/opt/postgresql/bin/pg_ctl -D /usr/local/var/postgres -l logfile start

==> Migrating and upgrading data...
/usr/local/opt/postgresql/bin/pg_upgrade -r -b /usr/local/Cellar/postgresql@12/12.7/bin -B /usr/local/opt/postgresql/bin -d /usr/local/var/postgres.old -D /usr/local/var/postgres -j 16
Performing Consistency Checks
-----------------------------
Checking cluster versions                                   ok

The source cluster was not shut down cleanly.
Failure, exiting
Error: Upgrading postgresql data from 12 to 13 failed!
==> Removing empty postgresql initdb database...
==> Moving postgresql data back from /usr/local/var/postgres.old to /usr/local/var/postgres...
Error: Failure while executing; `/usr/local/opt/postgresql/bin/pg_upgrade -r -b /usr/local/Cellar/postgresql@12/12.7/bin -B /usr/local/opt/postgresql/bin -d /usr/local/var/postgres.old -D /usr/local/var/postgres -j 16` exited with 1.
/usr/local/Homebrew/Library/Homebrew/utils.rb:322:in `safe_system'
/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/cmd/postgresql-upgrade-database.rb:126:in `block in postgresql_upgrade_database'
/usr/local/Homebrew/Library/Homebrew/extend/pathname.rb:303:in `block in cd'
/usr/local/Homebrew/Library/Homebrew/extend/pathname.rb:303:in `chdir'
/usr/local/Homebrew/Library/Homebrew/extend/pathname.rb:303:in `cd'
/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/cmd/postgresql-upgrade-database.rb:125:in `postgresql_upgrade_database'
/usr/local/Homebrew/Library/Homebrew/brew.rb:122:in `<main>'

Brew resolves Postgres dependency to v13 which isn't supported yet

Brew now tries to install Postgres 13 as a dependency but that doesn't seem to be supported yet.

$ brew install timescaledb --with-oss-only
==> Installing dependencies for timescale/tap/timescaledb: postgresql
==> Installing timescale/tap/timescaledb dependency: postgresql
==> Pouring postgresql-13.0.catalina.bottle.tar.gz

-- Compiling against PostgreSQL version 13.0
CMake Error at CMakeLists.txt:209 (message):
  TimescaleDB only supports PostgreSQL 9.6.3+, 10.2+, 11 or 12

Unable to install Timescaledb, mac Catalina

Using postgres@12 and ran:

brew tap timescale/tap
brew install timescaledb

Here is the brew output:

==> Installing timescaledb from timescale/tap
==> Downloading https://timescalereleases.blob.core.windows.net/homebrew/timescaledb-tools-0.8.1.tar.lzma
Already downloaded: /Users/MrZ/Library/Caches/Homebrew/downloads/e0d7cd23fb9df829da9157fe4bef071cfcf0bb41de472e1475e87cd8bec71737--timescaledb-tools-0.8.1.tar.lzma
==> Downloading https://timescalereleases.blob.core.windows.net/homebrew/timescaledb-1.7.4.tar.lzma
Already downloaded: /Users/MrZ/Library/Caches/Homebrew/downloads/2d1cd731a55fc74cedf70df9c74e773eabb25de83db216e8fdace69155ffbb4f--timescaledb-1.7.4.tar.lzma
==> Installing dependencies for timescale/tap/timescaledb: timescaledb-tools
==> Installing timescale/tap/timescaledb dependency: timescaledb-tools
๐Ÿบ  /usr/local/Cellar/timescaledb-tools/0.8.1: 4 files, 10.4MB, built in 2 seconds
==> Installing timescale/tap/timescaledb
==> ./bootstrap -DREGRESS_CHECKS=OFF -DPROJECT_INSTALL_METHOD="brew"
==> cd ./build && make
Last 15 lines from /Users/MrZ/Library/Logs/Homebrew/timescaledb/02.build:
make[2]: *** [src/CMakeFiles/timescaledb.dir/func_cache.c.o] Error 1
1 error generated.
1 error generated.
make[2]: *** [src/CMakeFiles/timescaledb.dir/cache.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/cache_invalidate.c.o] Error 1
[ 35%] Generating /tmp/timescaledb-20201120-23875-ayynkf/timescaledb/build/sql/timescaledb--0.3.0--1.7.4.sql
[ 36%] Generating /tmp/timescaledb-20201120-23875-ayynkf/timescaledb/build/sql/timescaledb--0.2.0--1.7.4.sql
1 error generated.
1 error generated.
[ 36%] Generating /tmp/timescaledb-20201120-23875-ayynkf/timescaledb/build/sql/timescaledb--0.1.0--1.7.4.sql
make[2]: *** [src/CMakeFiles/timescaledb.dir/catalog.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/continuous_agg.c.o] Error 1
make[1]: *** [src/CMakeFiles/timescaledb.dir/all] Error 2
[ 36%] Built target sqlupdatescripts
make: *** [all] Error 2

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
  https://github.com/timescale/homebrew-tap/issues

Can't seem to install on Big Sur, M1

Here's what I see:

==> Installing timescaledb from timescale/tap
==> Downloading https://timescalereleases.blob.core.windows.net/homebrew/timescaledb-2.3.1.tar.lzma
Already downloaded: /Users/robinmalhotra/Library/Caches/Homebrew/downloads/75156493f78b3b412aa2602d9787d081e502730765ff63b85143968511c61ed4--timescaledb-2.3.1.tar.lzma
==> ./bootstrap -DREGRESS_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DPROJECT_INSTALL_METHOD="brew"
Last 15 lines from /Users/robinmalhotra/Library/Logs/Homebrew/timescaledb/01.bootstrap:
-- Assertion checks are OFF
-- Found OpenSSL: /opt/homebrew/opt/[email protected]/lib/libcrypto.dylib (found version "1.1.1k")  
-- OPENSSL_LIBRARIES: /opt/homebrew/opt/[email protected]/lib/libssl.dylib;/opt/homebrew/opt/[email protected]/lib/libcrypto.dylib
-- Using OpenSSL version 1.1.1k
-- Using nm /usr/bin/nm
fatal: not a git repository (or any of the parent directories): .git
CMake Error at cmake/GitCommands.cmake:40 (message):
  Version 2.3.0 do not exist in repository.
Call Stack (most recent call first):
  cmake/GenerateScripts.cmake:160 (git_versioned_get)
  sql/CMakeLists.txt:62 (generate_downgrade_script)


-- Configuring incomplete, errors occurred!
See also "/tmp/timescaledb-20210722-22774-1ozdyff/timescaledb/build/CMakeFiles/CMakeOutput.log".

Do not report this issue to Homebrew/brew or Homebrew/core!

These open issues may also help:
Unable to install Timescaledb, mac Catalina https://github.com/timescale/homebrew-tap/issues/15
Error "Unsupported PostgreSQL version" with timescaleDB 2.2 and postgresql 13.1 https://github.com/timescale/homebrew-tap/issues/19

It looks like something's genuinely borked on the homebrew end ๐Ÿค” Wonder what this is

PG16 Issues with Timescale Toolkit

Howdy! I've had a hell of a couple of days trying to figure out what all is going on here, and I don't know that I'd even say I have successfully but I at least wanted to post back some notes.

So 3727aa7 bumped the Postgres version for TimescaleDB itself up to 16. 5f635cd quickly followed since the extension gets compiled as .dylib now, not a .so, and I think those layers work fine โ€” installing Timescale DB via Homebrew on a fresh Homebrew Postgres (16) works fine.

Things do not work when you try to install the Toolkit after that. For starters, the Toolkit formula references PG15 instead of 16 in multiple places:

And hard-codes for the .so file extension here.

Though perhaps more problematically, the post-install script for the toolkit itself (not this repo) still looks for .so here and here

All of essentially prevent a new install of the Toolkit from running / working at all. ๐Ÿ™

Unable to install timescaledb-toolkit on MacOS Sonoma 14.0 with Intel

brew install timescaledb-toolkit

==> Fetching timescale/tap/timescaledb-toolkit
==> Downloading https://github.com/tcdi/pgx/archive/refs/tags/v0.7.1.tar.gz
Already downloaded: /Users/austin/Library/Caches/Homebrew/downloads/5006eb8a6ad9d580cf1def141162253cf3566eae7ddfdf99ca5397ecbe2e9629--pgrx-0.7.1.tar.gz
==> Downloading https://github.com/timescale/timescaledb-toolkit/archive/refs/tags/1.16.0.tar.gz
Already downloaded: /Users/austin/Library/Caches/Homebrew/downloads/e1bd3e14f91601d22b589359c50ce0c58a03bb6cf2b4a647b0981549a90721f5--timescaledb-toolkit-1.16.0.tar.gz
==> Installing timescaledb-toolkit from timescale/tap
==> cargo install --path pgx/cargo-pgx
==> cargo pgx init --pg14 pg_config
==> cargo pgx package
Last 15 lines from /Users/austin/Library/Logs/Homebrew/timescaledb-toolkit/03.cargo:
cargo:rerun-if-env-changed=PGX_TARGET_INFO_PATH_PG14
cargo:rerun-if-env-changed=PGX_INCLUDEDIR_SERVER_PG14_x86_64-apple-darwin
cargo:rerun-if-env-changed=PGX_INCLUDEDIR_SERVER_PG14
cargo:rerun-if-env-changed=PGX_INCLUDEDIR_SERVER_x86_64-apple-darwin
cargo:rerun-if-env-changed=PGX_INCLUDEDIR_SERVER
cargo:rerun-if-env-changed=PGX_BINDGEN_NO_DETECT_INCLUDES_x86_64-apple-darwin
cargo:rerun-if-env-changed=PGX_BINDGEN_NO_DETECT_INCLUDES

--- stderr
build_paths=BuildPaths { manifest_dir: "/Users/austin/Library/Caches/Homebrew/cargo_cache/registry/src/index.crates.io-6f17d22bba15001f/pgx-pg-sys-0.7.1", out_dir: "/private/tmp/timescaledb-toolkit-20231012-67716-1hlflpo/timescaledb-toolkit-1.16.0/target/release/build/pgx-pg-sys-294954ebbe11fd79/out", src_dir: "/Users/austin/Library/Caches/Homebrew/cargo_cache/registry/src/index.crates.io-6f17d22bba15001f/pgx-pg-sys-0.7.1/src", shim_src: "/Users/austin/Library/Caches/Homebrew/cargo_cache/registry/src/index.crates.io-6f17d22bba15001f/pgx-pg-sys-0.7.1/cshim", shim_dst: "/private/tmp/timescaledb-toolkit-20231012-67716-1hlflpo/timescaledb-toolkit-1.16.0/target/release/build/pgx-pg-sys-294954ebbe11fd79/out/cshim" }
Generating bindings for pg14
thread '' panicked at '"wait_struct_(unnamed_at_/Library/Developer/CommandLineTools/SDKs/MacOSX14_sdk/usr/include/sys/wait_h_199_2)" is not a valid Ident', /Users/austin/Library/Caches/Homebrew/cargo_cache/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.51/src/fallback.rs:752:9
note: run with RUST_BACKTRACE=1 environment variable to display a backtrace
thread 'main' panicked at 'thread panicked while generating bindings: Any { .. }', /Users/austin/Library/Caches/Homebrew/cargo_cache/registry/src/index.crates.io-6f17d22bba15001f/pgx-pg-sys-0.7.1/build.rs:196:41
warning: build failed, waiting for other jobs to finish...

error: 'libpq-fe.h' file not found

brew install timescaledb
==> Installing timescaledb from timescale/tap
==> Downloading https://timescalereleases.blob.core.windows.net/homebrew/timescaledb-2.0.1.tar.lzma
Already downloaded: /Users/michael/Library/Caches/Homebrew/downloads/86a311958704c9e6161d1c81bf3816fde00fbd697c961ca015d0ad2283788a8a--timescaledb-2.0.1.tar.lzma
==> ./bootstrap -DREGRESS_CHECKS=OFF -DPROJECT_INSTALL_METHOD="brew"
==> cd ./build && make
Last 15 lines from /Users/michael/Library/Logs/Homebrew/timescaledb/02.build:
/tmp/timescaledb-20210216-87152-1xquj7x/timescaledb/tsl/src/remote/async.h:10:10: error: 'libpq-fe.h' file not found [clang-diagnostic-error]
#include <libpq-fe.h>
^
2 errors generated.
Error while processing /tmp/timescaledb-20210216-87152-1xquj7x/timescaledb/tsl/src/data_node.c.
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/data_node.c.o] Error 1
error: unknown warning option '-Wno-format-truncation' [clang-diagnostic-unknown-warning-option]
/tmp/timescaledb-20210216-87152-1xquj7x/timescaledb/tsl/src/remote/dist_txn.h:11:10: error: 'libpq-fe.h' file not found [clang-diagnostic-error]
#include <libpq-fe.h>
^
2 errors generated.
Error while processing /tmp/timescaledb-20210216-87152-1xquj7x/timescaledb/tsl/src/init.c.
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/init.c.o] Error 1
make[1]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/all] Error 2
make: *** [all] Error 2

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
https://github.com/timescale/homebrew-tap/issues

Error at ./build && make

Last 15 lines from /Users/arpansharma/Library/Logs/Homebrew/timescaledb/02.build:
make[2]: *** [src/CMakeFiles/timescaledb.dir/catalog.c.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [src/CMakeFiles/timescaledb.dir/agg_bookend.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/cache.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_dispatch.c.o] Error 1
1 error generated.
1 error generated.
1 error generated.
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_constraint.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/cache_invalidate.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk.c.o] Error 1
1 error generated.
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_adaptive.c.o] Error 1
make[1]: *** [src/CMakeFiles/timescaledb.dir/all] Error 2
make: *** [all] Error 2

Calling 'depends_on :postgresql' is deprecated

$ brew install timescaledb
Warning: Calling 'depends_on :postgresql' is deprecated!
Use 'depends_on "postgresql"' instead.
/usr/local/Homebrew/Library/Taps/timescale/homebrew-tap/timescaledb.rb:9:in `<class:Timescaledb>'
Please report this to the timescale/tap tap!

==> Installing timescaledb from timescale/tap
Error: no implicit conversion of Symbol into String
Please report this bug:
  https://docs.brew.sh/Troubleshooting.html
/usr/local/Homebrew/Library/Homebrew/formulary.rb:363:in `extname'
/usr/local/Homebrew/Library/Homebrew/formulary.rb:363:in `loader_for'
/usr/local/Homebrew/Library/Homebrew/formulary.rb:280:in `factory'
/usr/local/Homebrew/Library/Homebrew/dependency.rb:33:in `to_formula'
/usr/local/Homebrew/Library/Homebrew/dependency.rb:96:in `block in expand'
/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3/lib/ruby/2.3.0/delegate.rb:341:in `each'
/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3/lib/ruby/2.3.0/delegate.rb:341:in `block in delegating_block'
/usr/local/Homebrew/Library/Homebrew/dependency.rb:83:in `expand'
/usr/local/Homebrew/Library/Homebrew/formula.rb:1478:in `recursive_dependencies'
/usr/local/Homebrew/Library/Homebrew/requirement.rb:194:in `expand'
/usr/local/Homebrew/Library/Homebrew/formula.rb:1484:in `recursive_requirements'
/usr/local/Homebrew/Library/Homebrew/formula_installer.rb:420:in `runtime_requirements'
/usr/local/Homebrew/Library/Homebrew/formula_installer.rb:432:in `expand_requirements'
/usr/local/Homebrew/Library/Homebrew/formula_installer.rb:376:in `compute_dependencies'
/usr/local/Homebrew/Library/Homebrew/formula_installer.rb:133:in `verify_deps_exist'
/usr/local/Homebrew/Library/Homebrew/formula_installer.rb:126:in `prelude'
/usr/local/Homebrew/Library/Homebrew/cmd/install.rb:336:in `install_formula'
/usr/local/Homebrew/Library/Homebrew/cmd/install.rb:227:in `block in install'
/usr/local/Homebrew/Library/Homebrew/cmd/install.rb:225:in `each'
/usr/local/Homebrew/Library/Homebrew/cmd/install.rb:225:in `install'
/usr/local/Homebrew/Library/Homebrew/brew.rb:100:in `<main>'

Installation is broken: default Homebrew postgresql now 11.1

Similar to this issue from your Slack channel, the postgresql dependency in this formula breaks installation of timescaledb. Most unfortunately, I can't launch my database either.

I'm not familiar with Homebrew recipe syntax, but is it as simple as this change?

 depends_on "postgresql" => :build  # old
 depends_on "postgresql@10" => :build  # new

Problem

> pg_ctl -D mydatabase start
waiting for server to start....2018-12-11 10:23:35.287 PST [98647] FATAL:  could not access file "timescaledb": No such file or directory
2018-12-11 10:23:35.287 PST [98647] LOG:  database system is shut down
 stopped waiting
pg_ctl: could not start server
Examine the log output.

After commenting out #shared_preload_libraries = 'timescaledb' in postgresql.conf:

mydatabase=# ALTER EXTENSION timescaledb UPDATE;
ERROR:  could not open extension control file "/usr/local/Cellar/postgresql@10/10.6/share/postgresql@10/extension/timescaledb.control": No such file or directory

Steps to reproduce

brew install expected behavior is to fail if a dependency is pinned.

> brew upgrade timescaledb
==> Upgrading 1 outdated package:
timescale/tap/timescaledb 1.0.0 -> 1.0.1
Error: You must `brew unpin postgresql` as installing timescale/tap/timescaledb requires the latest version of pinned dependencies

The postgresql formula now points to 11.1.

> brew info postgresql
postgresql: stable 11.1 (bottled), HEAD

To avoid clobbering my Postgresql 10.6 installation:

brew unlink postgresql
brew install postgresql@10  # keg-only
brew link --force postgresql@10

Then, upgrade timescaledb, which did not ignore dependencies as instructed but instead installed the default postgresql. You can see that the previous installation of postgresql@10 prevented the linking of v11.1.

> brew upgrade --ignore-dependencies timescaledb
Updating Homebrew...
Fast-forwarded master to origin/master.
Fast-forwarded master to origin/master.
==> Auto-updated Homebrew!
Updated 2 taps (homebrew/cask-versions and homebrew/core).
==> Updated Formulae
bitrise

==> Upgrading 1 outdated package:
timescale/tap/timescaledb 1.0.0 -> 1.0.1
==> Upgrading timescale/tap/timescaledb
==> Installing dependencies for timescale/tap/timescaledb: postgresql
==> Installing timescale/tap/timescaledb dependency: postgresql
==> Downloading https://homebrew.bintray.com/bottles/postgresql-11.1.sierra.bott
Already downloaded: /Users/me/Library/Caches/Homebrew/downloads/3be1486d9ccbc23b4d36bf286283b2c693eb46f6388cd24d0f071f321fec8085--postgresql-11.1.sierra.bottle.tar.gz
==> Pouring postgresql-11.1.sierra.bottle.tar.gz
Error: The `brew link` step did not complete successfully
The formula built, but is not symlinked into /usr/local
Could not symlink bin/clusterdb
Target /usr/local/bin/clusterdb
is a symlink belonging to postgresql@10. You can unlink it:
  brew unlink postgresql@10
# [all the files that didn't link]
==> Summary
๐Ÿบ  /usr/local/Cellar/postgresql/11.1: 3,548 files, 40.3MB
==> Installing timescale/tap/timescaledb
==> Downloading https://timescalereleases.blob.core.windows.net/homebrew/timesca
######################################################################## 100.0%
==> ./bootstrap -DPROJECT_INSTALL_METHOD="brew"
==> cd ./build && make
Last 15 lines from /Users/me/Library/Logs/Homebrew/timescaledb/02.build:
1 error generated.
1 error generated.
1 error generated.
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_insert_state.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_constraint.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk.c.o] Error 1
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/chunk_index.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
1 error generated.
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_adaptive.c.o] Error 1
1 error generated.
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_index.c.o] Error 1
make[1]: *** [src/CMakeFiles/timescaledb.dir/all] Error 2
make: *** [all] Error 2

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
https://github.com/timescale/homebrew-tap/issues
### Full error log
2018-12-11 10:29:31 -0800

cd ./build && make

[  1%] Generating gitcommit.h
Scanning dependencies of tmeet sqlfile
Scanning dependencies of tmeet sqlupdatescripts
[  2%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--1.0.1.sql
[  5%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--1.0.0-rc1--1.0.1.sql
[  5%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.12.1--1.0.1.sql
[  5%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--1.0.0-rc2--1.0.1.sql
[  8%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--1.0.0--1.0.1.sql
[  9%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.10.1--1.0.1.sql
[ 10%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--1.0.0-rc3--1.0.1.sql
[ 10%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.10.0--1.0.1.sql
[ 10%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.12.0--1.0.1.sql
[ 12%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.11.0--1.0.1.sql
Scanning dependencies of tmeet timescaledb-loader
[ 13%] Built tmeet sqlfile
[ 13%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.9.1--1.0.1.sql
[ 14%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.8.0--1.0.1.sql
[ 15%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.7.1--1.0.1.sql
[ 16%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.7.0--1.0.1.sql
[ 17%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.9.2--1.0.1.sql
[ 19%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.9.0--1.0.1.sql
[ 19%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.6.1--1.0.1.sql
[ 20%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.6.0--1.0.1.sql
[ 21%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.5.0--1.0.1.sql
[ 23%] Building C object src/loader/CMakeFiles/timescaledb-loader.dir/loader.c.o
[ 24%] Building C object src/loader/CMakeFiles/timescaledb-loader.dir/bgw_message_queue.c.o
[ 26%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.4.1--1.0.1.sql
[ 26%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.3.0--1.0.1.sql
[ 27%] Building C object src/loader/CMakeFiles/timescaledb-loader.dir/bgw_counter.c.o
[ 28%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.4.2--1.0.1.sql
[ 30%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.4.0--1.0.1.sql
[ 30%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.2.0--1.0.1.sql
[ 32%] Building C object src/loader/CMakeFiles/timescaledb-loader.dir/bgw_launcher.c.o
[ 32%] Generating /tmp/timescaledb-20181211-830-8doeqn/timescaledb/build/sql/timescaledb--0.1.0--1.0.1.sql
[ 34%] Building C object src/loader/CMakeFiles/timescaledb-loader.dir/bgw_interface.c.o
[ 34%] Built tmeet sqlupdatescripts
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/loader/loader.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/loader/bgw_message_queue.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
1 error generated.
1 error generated.
make[2]: *** [src/loader/CMakeFiles/timescaledb-loader.dir/bgw_message_queue.c.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [src/loader/CMakeFiles/timescaledb-loader.dir/loader.c.o] Error 1
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/loader/bgw_launcher.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/loader/bgw_interface.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/loader/bgw_counter.c:8:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
1 error generated.
1 error generated.
1 error generated.
make[2]: *** [src/loader/CMakeFiles/timescaledb-loader.dir/bgw_interface.c.o] Error 1
make[2]: *** [src/loader/CMakeFiles/timescaledb-loader.dir/bgw_counter.c.o] Error 1
make[2]: *** [src/loader/CMakeFiles/timescaledb-loader.dir/bgw_launcher.c.o] Error 1
make[1]: *** [src/loader/CMakeFiles/timescaledb-loader.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
Scanning dependencies of tmeet timescaledb
[ 38%] Building C object src/CMakeFiles/timescaledb.dir/agg_bookend.c.o
[ 38%] Building C object src/CMakeFiles/timescaledb.dir/cache_invalidate.c.o
[ 38%] Building C object src/CMakeFiles/timescaledb.dir/cache.c.o
[ 38%] Building C object src/CMakeFiles/timescaledb.dir/catalog.c.o
[ 41%] Building C object src/CMakeFiles/timescaledb.dir/chunk_dispatch.c.o
[ 42%] Building C object src/CMakeFiles/timescaledb.dir/chunk_adaptive.c.o
[ 42%] Building C object src/CMakeFiles/timescaledb.dir/chunk.c.o
[ 42%] Building C object src/CMakeFiles/timescaledb.dir/chunk_dispatch_state.c.o
[ 45%] Building C object src/CMakeFiles/timescaledb.dir/chunk_constraint.c.o
[ 45%] Building C object src/CMakeFiles/timescaledb.dir/chunk_dispatch_plan.c.o
[ 46%] Building C object src/CMakeFiles/timescaledb.dir/chunk_insert_state.c.o
[ 47%] Building C object src/CMakeFiles/timescaledb.dir/chunk_index.c.o
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/chunk_dispatch_state.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/cache_invalidate.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/cache.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/catalog.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
1 error generated.
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/chunk_dispatch.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/chunk_adaptive.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/agg_bookend.c:7:10: fatal error: 'postgres.h' file not found
1 error generated.
#include <postgres.h>
         ^~~~~~~~~~~~
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/chunk.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/chunk_constraint.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
make[2]: *** [src/CMakeFiles/timescaledb.dir/cache.c.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [src/CMakeFiles/timescaledb.dir/cache_invalidate.c.o] Error 1
1 error generated.
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/chunk_insert_state.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
1 error generated.
1 error generated.
make[2]: *** [src/CMakeFiles/timescaledb.dir/agg_bookend.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_dispatch_state.c.o] Error 1
1 error generated.
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/chunk_dispatch_plan.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
make[2]: *** [src/CMakeFiles/timescaledb.dir/catalog.c.o] Error 1
1 error generated.
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_dispatch.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_dispatch_plan.c.o] Error 1
1 error generated.
1 error generated.
1 error generated.
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_insert_state.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_constraint.c.o] Error 1
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk.c.o] Error 1
/tmp/timescaledb-20181211-830-8doeqn/timescaledb/src/chunk_index.c:7:10: fatal error: 'postgres.h' file not found
#include <postgres.h>
         ^~~~~~~~~~~~
1 error generated.
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_adaptive.c.o] Error 1
1 error generated.
make[2]: *** [src/CMakeFiles/timescaledb.dir/chunk_index.c.o] Error 1
make[1]: *** [src/CMakeFiles/timescaledb.dir/all] Error 2
make: *** [all] Error 2

HOMEBREW_VERSION: 1.8.5
ORIGIN: https://github.com/Homebrew/brew
HEAD: 38493a35a2abe722c527ffebf9c2fbf9bc4d3825
Last commit: 4 days ago
Core tap ORIGIN: https://github.com/Homebrew/homebrew-core
Core tap HEAD: 5b08098655389fa74cf3a332eab63ab16074da62
Core tap last commit: 3 minutes ago
HOMEBREW_PREFIX: /usr/local
HOMEBREW_CACHE: /Users/me/Library/Caches/Homebrew
CPU: dodeca-core 64-bit arrandale
Homebrew Ruby: 2.3.7 => /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/bin/ruby
Clang: 9.0 build 900
Git: 2.20.0 => /usr/local/bin/git
Curl: 7.54.0 => /usr/bin/curl
Java: 11.0.1, 11
macOS: 10.12.6-x86_64
CLT: 9.2.0.0.1.1510905681
Xcode: 9.2
XQuartz: 2.7.11 => /opt/X11

HOMEBREW_CC: clang
HOMEBREW_CXX: clang++
MAKEFLAGS: -j12
CMAKE_PREFIX_PATH: /usr/local/opt/openssl:/usr/local
CMAKE_INCLUDE_PATH: /usr/include/libxml2:/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers
CMAKE_LIBRARY_PATH: /System/Library/Frameworks/OpenGL.framework/Versions/Current/Libraries
PKG_CONFIG_PATH: /usr/local/opt/postgresql/lib/pkgconfig:/usr/local/opt/openssl/lib/pkgconfig
PKG_CONFIG_LIBDIR: /usr/lib/pkgconfig:/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.12
HOMEBREW_GIT: git
ACLOCAL_PATH: /usr/local/share/aclocal
PATH: /usr/local/Homebrew/Library/Homebrew/shims/mac/super:/usr/local/opt/cmake/bin:/usr/local/opt/postgresql/bin:/usr/local/opt/openssl/bin:/usr/bin:/bin:/usr/sbin:/sbin

error: 'libpq-fe.h' file not found

The error:
Installing timescaledb 2.0.0 combined with either postgresql@11 or postgresql@12 gives the following error:

% brew install timescaledb
==> Installing timescaledb from timescale/tap
==> Downloading https://timescalereleases.blob.core.windows.net/homebrew/timescaledb-2.0.0.tar.lzma
Already downloaded: /Users/per/Library/Caches/Homebrew/downloads/3898ba2f4fbd2fbe53673dcac3ff7c592a5fbeaf409b8b735c7484f632b43581--timescaledb-2.0.0.tar.lzma

==> ./bootstrap -DREGRESS_CHECKS=OFF -DPROJECT_INSTALL_METHOD="brew"
==> cd ./build && make install DESTDIR=/private/tmp/timescaledb-20210108-35307-8jzx7l/timescaledb/stage
Last 15 lines from /Users/per/Library/Logs/Homebrew/timescaledb/02.stage:
/tmp/timescaledb-20210108-35307-8jzx7l/timescaledb/tsl/src/remote/connection.h:11:10: error: 'libpq-fe.h' file not found [clang-diagnostic-error]
#include <libpq-fe.h>
         ^
2 errors generated.
Error while processing /tmp/timescaledb-20210108-35307-8jzx7l/timescaledb/tsl/src/data_node_dispatch.c.
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/data_node_dispatch.c.o] Error 1
error: unknown warning option '-Wno-format-truncation' [clang-diagnostic-unknown-warning-option]
/tmp/timescaledb-20210108-35307-8jzx7l/timescaledb/tsl/src/remote/async.h:10:10: error: 'libpq-fe.h' file not found [clang-diagnostic-error]
#include <libpq-fe.h>
         ^
2 errors generated.
Error while processing /tmp/timescaledb-20210108-35307-8jzx7l/timescaledb/tsl/src/data_node.c.
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/data_node.c.o] Error 1
make[1]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/all] Error 2
make: *** [all] Error 2

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
  https://github.com/timescale/homebrew-tap/issues

These open issues may also help:
Unable to install Timescaledb, mac Catalina https://github.com/timescale/homebrew-tap/issues/15

despite libpq-fe.h being symlinked in /usr/local/include/:

% find /usr/local -name "libpq-fe*" -print0 | xargs -0 ls -l 
-rw-r--r--  1 per  staff  22839 Nov  9 23:39 /usr/local/Cellar/postgresql@12/12.5/include/libpq-fe.h
lrwxr-xr-x  1 per  admin     47 Jan  8 09:56 /usr/local/include/libpq-fe.h -> ../Cellar/postgresql@12/12.5/include/libpq-fe.h

Temporary solution:
After quite a bit of debugging I managed to overcome this error by modifying the following lines in the formulae to install timescaledb 1.7.4 instead of 2.0.0:

url "https://timescalereleases.blob.core.windows.net/homebrew/timescaledb-1.7.4.tar.lzma"
version "1.7.4"
sha256 "d7ea99d19d4928c8bcd95301c71554726346f82c440e14bb8a067b2474397442"

How to reproduce:

  • ensure neither timescaledb nor timescaledb-tools are already installed
  • if postgresql@12 is not already installed and linked, do:
    brew install postgresql@12
    brew link postgresql@12
    cp -rf /usr/local/Cellar/postgresql\@12/12.5/include/postgresql/server /usr/local/opt/postgresql@12/include/ (from #13 (comment))
  • install timescaledb 2.0.0:
    brew tap timescale/tap
    brew install timescaledb

I'm running Catalina 10.15.7

Error "Unsupported PostgreSQL version" with timescaleDB 2.2 and postgresql 13.1

My OS is macos big sur.

here is my log, please help,

==> Installing timescale/tap/timescaledb
==> ./bootstrap -DREGRESS_CHECKS=OFF -DPROJECT_INSTALL_METHOD="brew"
==> cd ./build && make
Last 15 lines from /Users/jerrylau/Library/Logs/Homebrew/timescaledb/02.build:
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/deparse.c.o] Error 1
In file included from /tmp/timescaledb-20210521-47798-12gv2y3/timescaledb/tsl/src/dist_backup.c:20:
In file included from /tmp/timescaledb-20210521-47798-12gv2y3/timescaledb/src/catalog.h:17:
In file included from /tmp/timescaledb-20210521-47798-12gv2y3/timescaledb/src/scanner.h:15:
In file included from /tmp/timescaledb-20210521-47798-12gv2y3/timescaledb/src/utils.h:15:
/tmp/timescaledb-20210521-47798-12gv2y3/timescaledb/src/compat.h:43:2: error: "Unsupported PostgreSQL version"
#error "Unsupported PostgreSQL version"
^
1 error generated.
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/dist_util.c.o] Error 1
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/data_node.c.o] Error 1
1 error generated.
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/dist_backup.c.o] Error 1
make[1]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/all] Error 2
make: *** [all] Error 2

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
https://github.com/timescale/homebrew-tap/issues

These open issues may also help:
Unable to install Timescaledb, mac Catalina #15
yates:~ jerrylau$ brew install timescaledb
Updating Homebrew...
==> Installing timescaledb from timescale/tap
==> Downloading https://timescalereleases.blob.core.windows.net/homebrew/timescaledb-2.2.1.tar.lzma
Already downloaded: /Users/jerrylau/Library/Caches/Homebrew/downloads/a91ce2903bc996c73f7023ec347562f29b67b260d834cffbe866282357054a2d--timescaledb-2.2.1.tar.lzma
==> ./bootstrap -DREGRESS_CHECKS=OFF -DPROJECT_INSTALL_METHOD="brew"
==> cd ./build && make
Last 15 lines from /Users/jerrylau/Library/Logs/Homebrew/timescaledb/02.build:
In file included from /tmp/timescaledb-20210521-49462-9glyjh/timescaledb/src/scanner.h:15:
In file included from /tmp/timescaledb-20210521-49462-9glyjh/timescaledb/src/utils.h:15:
/tmp/timescaledb-20210521-49462-9glyjh/timescaledb/src/compat.h:43:2: error: "Unsupported PostgreSQL version"
#error "Unsupported PostgreSQL version"
^
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/deparse.c.o] Error 1
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/chunk_api.c.o] Error 1

New default PostgreSQL version

After PostgreSQL 12 became a default version in homebrew this formula fails to build.
Should postgresql@11 be used now?

Unable to install timescaledb-toolkit on mac Ventura 13.5 with intel chip

Hello, I can't seem to download timescaledb-toolkit with brew install. It looks like the rust(1.71.0) compiler has some linking issues. I don't use rust for anything it's just a dependency that downloads the latest version when I try and install timescaledb-toolkit. My computer specs:
MacOs Ventura 13.5
Processor 2.6 GHz 6-Core Intel Core i7

output of brew install -v timescaledb-toolkit
==> Fetching dependencies for timescale/tap/timescaledb-toolkit: rust
==> Fetching rust
==> Downloading https://ghcr.io/v2/homebrew/core/rust/manifests/1.71.0
Already downloaded: /Users/mmarvin/Library/Caches/Homebrew/downloads/7ea529de0569656955341ae59791e889bd6b74f04b64afad8009741b01153b53--rust-1.71.0.bottle_manifest.json
==> Downloading https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:157c9336adb9c0610464e97c0e7a87e8befd311b5eef005baee4f23d06c217be
Already downloaded: /Users/mmarvin/Library/Caches/Homebrew/downloads/6a21c40ca5512ce389b3792b83226a7e2a336d7963c020c922f9fcc7a2a71fb3--rust--1.71.0.ventura.bottle.tar.gz
==> Verifying checksum for '6a21c40ca5512ce389b3792b83226a7e2a336d7963c020c922f9fcc7a2a71fb3--rust--1.71.0.ventura.bottle.tar.gz'
==> Fetching timescale/tap/timescaledb-toolkit
==> Downloading https://github.com/tcdi/pgx/archive/refs/tags/v0.7.1.tar.gz
Already downloaded: /Users/mmarvin/Library/Caches/Homebrew/downloads/5006eb8a6ad9d580cf1def141162253cf3566eae7ddfdf99ca5397ecbe2e9629--pgrx-0.7.1.tar.gz
==> Verifying checksum for '5006eb8a6ad9d580cf1def141162253cf3566eae7ddfdf99ca5397ecbe2e9629--pgrx-0.7.1.tar.gz'
==> Downloading https://github.com/timescale/timescaledb-toolkit/archive/refs/tags/1.16.0.tar.gz
Already downloaded: /Users/mmarvin/Library/Caches/Homebrew/downloads/e1bd3e14f91601d22b589359c50ce0c58a03bb6cf2b4a647b0981549a90721f5--timescaledb-toolkit-1.16.0.tar.gz
==> Verifying checksum for 'e1bd3e14f91601d22b589359c50ce0c58a03bb6cf2b4a647b0981549a90721f5--timescaledb-toolkit-1.16.0.tar.gz'
==> Installing timescaledb-toolkit from timescale/tap
==> Installing dependencies for timescale/tap/timescaledb-toolkit: rust
==> Installing timescale/tap/timescaledb-toolkit dependency: rust
==> Pouring rust--1.71.0.ventura.bottle.tar.gz
/usr/bin/env tar --extract --no-same-owner --file /Users/mmarvin/Library/Caches/Homebrew/downloads/6a21c40ca5512ce389b3792b83226a7e2a336d7963c020c922f9fcc7a2a71fb3--rust--1.71.0.ventura.bottle.tar.gz --directory /private/tmp/d20230803-59860-c3t7vu
/usr/bin/env cp -pR /private/tmp/d20230803-59860-c3t7vu/rust/. /usr/local/Cellar/rust
==> Finishing up
ln -s ../../Cellar/rust/1.71.0/etc/bash_completion.d/cargo.bashcomp.sh cargo.bashcomp.sh
ln -s ../Cellar/rust/1.71.0/bin/cargo cargo
ln -s ../Cellar/rust/1.71.0/bin/cargo-clippy cargo-clippy
ln -s ../Cellar/rust/1.71.0/bin/cargo-clippy.old cargo-clippy.old
ln -s ../Cellar/rust/1.71.0/bin/cargo-fmt cargo-fmt
ln -s ../Cellar/rust/1.71.0/bin/cargo-fmt.old cargo-fmt.old
ln -s ../Cellar/rust/1.71.0/bin/clippy-driver clippy-driver
ln -s ../Cellar/rust/1.71.0/bin/clippy-driver.old clippy-driver.old
ln -s ../Cellar/rust/1.71.0/bin/rust-analyzer rust-analyzer
ln -s ../Cellar/rust/1.71.0/bin/rust-demangler rust-demangler
ln -s ../Cellar/rust/1.71.0/bin/rust-gdb rust-gdb
ln -s ../Cellar/rust/1.71.0/bin/rust-gdbgui rust-gdbgui
ln -s ../Cellar/rust/1.71.0/bin/rust-lldb rust-lldb
ln -s ../Cellar/rust/1.71.0/bin/rustc rustc
ln -s ../Cellar/rust/1.71.0/bin/rustdoc rustdoc
ln -s ../Cellar/rust/1.71.0/bin/rustfmt rustfmt
ln -s ../Cellar/rust/1.71.0/bin/rustfmt.old rustfmt.old
ln -s ../../Cellar/rust/1.71.0/share/doc/rust rust
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-add.1 cargo-add.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-bench.1 cargo-bench.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-build.1 cargo-build.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-check.1 cargo-check.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-clean.1 cargo-clean.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-doc.1 cargo-doc.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-fetch.1 cargo-fetch.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-fix.1 cargo-fix.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-generate-lockfile.1 cargo-generate-lockfile.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-help.1 cargo-help.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-init.1 cargo-init.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-install.1 cargo-install.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-locate-project.1 cargo-locate-project.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-login.1 cargo-login.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-logout.1 cargo-logout.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-metadata.1 cargo-metadata.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-new.1 cargo-new.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-owner.1 cargo-owner.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-package.1 cargo-package.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-pkgid.1 cargo-pkgid.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-publish.1 cargo-publish.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-remove.1 cargo-remove.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-report.1 cargo-report.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-run.1 cargo-run.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-rustc.1 cargo-rustc.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-rustdoc.1 cargo-rustdoc.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-search.1 cargo-search.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-test.1 cargo-test.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-tree.1 cargo-tree.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-uninstall.1 cargo-uninstall.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-update.1 cargo-update.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-vendor.1 cargo-vendor.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-verify-project.1 cargo-verify-project.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-version.1 cargo-version.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo-yank.1 cargo-yank.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/cargo.1 cargo.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/rustc.1 rustc.1
ln -s ../../../Cellar/rust/1.71.0/share/man/man1/rustdoc.1 rustdoc.1
ln -s ../../../Cellar/rust/1.71.0/share/zsh/site-functions/_cargo _cargo
ln -s ../Cellar/rust/1.71.0/lib/librustc_driver-52b1d880f2bbdc20.dylib librustc_driver-52b1d880f2bbdc20.dylib
ln -s ../Cellar/rust/1.71.0/lib/libstd-df75248ad27191bd.dylib libstd-df75248ad27191bd.dylib
ln -s ../Cellar/rust/1.71.0/lib/libtest-5590da69405495a5.dylib libtest-5590da69405495a5.dylib
ln -s ../Cellar/rust/1.71.0/lib/rustlib rustlib
==> Downloading https://formulae.brew.sh/api/formula.jws.json
######################################################################################################################################################################################################################################################### 100.0%
==> Summary
๐Ÿบ /usr/local/Cellar/rust/1.71.0: 38,254 files, 1.2GB
==> Installing timescale/tap/timescaledb-toolkit
/usr/bin/env tar --extract --no-same-owner --file /Users/mmarvin/Library/Caches/Homebrew/downloads/e1bd3e14f91601d22b589359c50ce0c58a03bb6cf2b4a647b0981549a90721f5--timescaledb-toolkit-1.16.0.tar.gz --directory /private/tmp/d20230803-60201-9nvuft
/usr/bin/env cp -pR /private/tmp/d20230803-60201-9nvuft/timescaledb-toolkit-1.16.0/. /private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0
/usr/bin/env tar --extract --no-same-owner --file /Users/mmarvin/Library/Caches/Homebrew/downloads/5006eb8a6ad9d580cf1def141162253cf3566eae7ddfdf99ca5397ecbe2e9629--pgrx-0.7.1.tar.gz --directory /private/tmp/d20230803-60201-13halm2
/usr/bin/env cp -pR /private/tmp/d20230803-60201-13halm2/pgrx-0.7.1/. /private/tmp/timescaledb-toolkit--cargo-pgx-20230803-60201-105yxjg/pgrx-0.7.1
==> cargo install --locked --path pgx/cargo-pgx
Installing cargo-pgx v0.7.1 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/pgx/cargo-pgx)
Updating crates.io index
warning: package crossbeam-channel v0.5.6 in Cargo.lock is yanked in registry crates-io, consider running without --locked
warning: package spin v0.9.4 in Cargo.lock is yanked in registry crates-io, consider running without --locked
Compiling quote v1.0.23
Compiling libc v0.2.139
Compiling proc-macro2 v1.0.50
Compiling unicode-ident v1.0.6
Compiling cfg-if v1.0.0
Compiling syn v1.0.107
Compiling once_cell v1.17.0
Compiling autocfg v1.1.0
Compiling cc v1.0.79
Compiling serde_derive v1.0.152
Compiling log v0.4.17
Compiling serde v1.0.152
Compiling memchr v2.5.0
Compiling version_check v0.9.4
Compiling lazy_static v1.4.0
Compiling bitflags v1.3.2
Compiling regex-syntax v0.6.28
Compiling tracing-core v0.1.30
Compiling crossbeam-utils v0.8.14
Compiling core-foundation-sys v0.8.3
Compiling io-lifetimes v1.0.5
Compiling tinyvec_macros v0.1.0
Compiling tinyvec v1.6.0
Compiling proc-macro-error-attr v1.0.4
Compiling memoffset v0.7.1
Compiling spin v0.5.2
Compiling untrusted v0.7.1
Compiling overload v0.1.1
Compiling pin-project-lite v0.2.9
Compiling rustix v0.36.7
Compiling adler v1.0.2
Compiling aho-corasick v0.7.20
Compiling miniz_oxide v0.6.2
Compiling ring v0.16.20
Compiling unicode-normalization v0.1.22
Compiling nu-ansi-term v0.46.0
Compiling atty v0.2.14
Compiling errno v0.2.8
Compiling tracing-log v0.1.3
Compiling proc-macro-error v1.0.4
Compiling crossbeam-epoch v0.9.13
Compiling regex-automata v0.1.10
Compiling regex v1.7.1
Compiling sharded-slab v0.1.4
Compiling thread_local v1.1.4
Compiling unicode-bidi v0.3.10
Compiling crc32fast v1.3.2
Compiling percent-encoding v2.2.0
Compiling smallvec v1.10.0
Compiling matchers v0.1.0
Compiling is_ci v1.1.1
Compiling thiserror v1.0.38
Compiling eyre v0.6.8
Compiling serde_json v1.0.91
Compiling supports-color v1.3.1
Compiling form_urlencoded v1.1.0
Compiling idna v0.3.0
Compiling indexmap v1.9.2
Compiling scopeguard v1.1.0
Compiling ryu v1.0.12
Compiling anyhow v1.0.68
Compiling indenter v0.3.3
Compiling camino v1.1.2
Compiling semver v1.0.16
Compiling itoa v1.0.5
Compiling url v2.3.1
Compiling owo-colors v3.5.0
Compiling security-framework-sys v2.8.0
Compiling core-foundation v0.9.3
Compiling backtrace v0.3.67
Compiling prettyplease v0.1.23
Compiling hashbrown v0.12.3
Compiling doc-comment v0.3.3
Compiling fastrand v1.8.0
Compiling native-tls v0.2.11
Compiling rustls v0.20.8
Compiling remove_dir_all v0.5.3
Compiling gimli v0.27.1
Compiling heck v0.4.1
Compiling rayon-core v1.10.2
Compiling os_str_bytes v6.4.1
Compiling clap_lex v0.3.1
Compiling tempfile v3.3.0
Compiling security-framework v2.8.2
Compiling flate2 v1.0.25
Compiling crossbeam-deque v0.8.2
Compiling webpki v0.22.0
Compiling sct v0.7.0
Compiling terminal_size v0.2.3
Compiling is-terminal v0.4.2
Compiling dirs-sys v0.3.7
Compiling num_cpus v1.15.0
Compiling crossbeam-channel v0.5.6
Compiling object v0.30.3
Compiling termcolor v1.2.0
Compiling tracing-attributes v0.1.23
Compiling thiserror-impl v1.0.38
Compiling addr2line v0.19.0
Compiling clap_derive v4.1.0
Compiling rustc-demangle v0.1.21
Compiling tracing v0.1.37
Compiling fixedbitset v0.4.2
Compiling tracing-subscriber v0.3.16
Compiling strsim v0.10.0
Compiling petgraph v0.6.2
Compiling dirs v4.0.0
Compiling clap v4.1.4
Compiling tracing-error v0.2.0
Compiling color-spantrace v0.2.0
Compiling webpki-roots v0.22.6
Compiling pathsearch v0.2.0
Compiling filetime v0.2.19
Compiling either v1.8.1
Compiling unescape v0.1.0
Compiling cargo-pgx v0.7.1 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/pgx/cargo-pgx)
Compiling convert_case v0.5.0
Compiling xml-rs v0.8.4
Compiling seq-macro v0.3.2
Compiling base64 v0.13.1
Compiling pgx-sql-entity-graph v0.7.1 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/pgx/pgx-sql-entity-graph)
Compiling ureq v2.6.2
Compiling rayon v1.6.1
Compiling tar v0.4.38
Compiling cargo-platform v0.1.2
Compiling toml v0.5.11
Compiling serde-xml-rs v0.5.1
Compiling cargo_metadata v0.15.3
Compiling color-eyre v0.6.2
Compiling object v0.28.4
Compiling clap-cargo v0.10.0
Compiling pgx-pg-config v0.7.1 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/pgx/pgx-pg-config)
Compiling cargo_toml v0.11.8
Compiling env_proxy v0.4.1
Compiling fork v0.1.20
Compiling libloading v0.7.4
Finished release [optimized] target(s) in 1m 30s
Replacing /Users/mmarvin/Library/Caches/Homebrew/cargo_cache/bin/cargo-pgx
Replaced package cargo-pgx v0.7.1 (/private/tmp/timescaledb-toolkit-20230803-56319-1miijyn/timescaledb-toolkit-1.16.0/pgx/cargo-pgx) with cargo-pgx v0.7.1 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/pgx/cargo-pgx) (executable cargo-pgx)
warning: be sure to add /Users/mmarvin/Library/Caches/Homebrew/cargo_cache/bin to your PATH to be able to run the installed binaries
==> cargo pgx init --pg14 pg_config
Validating pg_config
Initializing data directory at /private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/data-14
==> cargo pgx package
Using PgConfig("pg14") and pg_config from /usr/local/opt/postgresql@14/bin/pg_config
Building extension with features pg14
Running command "cargo" "build" "--release" "--features" "pg14" "--no-default-features" "--message-format=json-render-diagnostics"
Compiling proc-macro2 v1.0.51
Compiling quote v1.0.23
Compiling unicode-ident v1.0.3
Compiling syn v1.0.107
Compiling autocfg v1.1.0
Compiling serde v1.0.152
Compiling serde_derive v1.0.152
Compiling memchr v2.5.0
Compiling cfg-if v1.0.0
Compiling libc v0.2.139
Compiling libm v0.2.5
Compiling log v0.4.17
Compiling once_cell v1.17.1
Compiling thiserror v1.0.37
Compiling regex-syntax v0.6.27
Compiling eyre v0.6.8
Compiling num-traits v0.2.15
Compiling ucd-trie v0.1.5
Compiling indexmap v1.9.1
Compiling lazy_static v1.4.0
Compiling serde_json v1.0.93
Compiling ppv-lite86 v0.2.16
Compiling getrandom v0.2.7
Compiling aho-corasick v0.7.18
Compiling rand_core v0.6.3
Compiling tinyvec_macros v0.1.0
Compiling glob v0.3.0
Compiling tinyvec v1.6.0
Compiling rand_chacha v0.3.1
Compiling thread_local v1.1.4
Compiling tracing-core v0.1.30
Compiling rand v0.8.5
Compiling clang-sys v1.3.3
Compiling indenter v0.3.3
Compiling anyhow v1.0.69
Compiling unicode-normalization v0.1.21
Compiling regex v1.7.1
Compiling regex-automata v0.1.10
Compiling pin-project-lite v0.2.9
Compiling percent-encoding v2.2.0
Compiling minimal-lexical v0.2.1
Compiling semver v1.0.13
Compiling overload v0.1.1
Compiling unicode-bidi v0.3.8
Compiling nu-ansi-term v0.46.0
Compiling nom v7.1.1
Compiling idna v0.3.0
Compiling matchers v0.1.0
Compiling form_urlencoded v1.1.0
Compiling tracing-log v0.1.3
Compiling dirs-sys v0.3.7
Compiling sharded-slab v0.1.4
Compiling libloading v0.7.3
Compiling itoa v1.0.3
Compiling hashbrown v0.12.3
Compiling smallvec v1.9.0
Compiling ryu v1.0.11
Compiling bindgen v0.60.1
Compiling dirs v4.0.0
Compiling pathsearch v0.2.0
Compiling url v2.3.1
Compiling cexpr v0.6.0
Compiling lock_api v0.4.7
Compiling num-integer v0.1.45
Compiling rustc-hash v1.1.0
Compiling fixedbitset v0.4.2
Compiling bitflags v1.3.2
Compiling owo-colors v3.5.0
Compiling crossbeam-utils v0.8.11
Compiling peeking_take_while v0.1.2
Compiling shlex v1.1.0
Compiling lazycell v1.3.0
Compiling seq-macro v0.3.1
Compiling petgraph v0.6.2
Compiling rustc_version v0.4.0
Compiling bstr v0.2.17
Compiling num-rational v0.4.1
Compiling memoffset v0.6.5
Compiling unescape v0.1.0
Compiling scopeguard v1.1.0
Compiling unic-char-range v0.9.0
Compiling same-file v1.0.6
Compiling convert_case v0.5.0
Compiling unic-common v0.9.0
Compiling fnv v1.0.7
Compiling radium v0.7.0
Compiling typenum v1.15.0
Compiling hexf-parse v0.2.1
Compiling globset v0.4.9
Compiling unic-ucd-version v0.9.0
Compiling walkdir v2.3.2
Compiling unic-char-property v0.9.0
Compiling heapless v0.7.16
Compiling approx v0.5.1
Compiling rawpointer v0.2.1
Compiling paste v1.0.8
Compiling byteorder v1.4.3
Compiling tap v1.0.1
Compiling hash32 v0.2.1
Compiling wyz v0.5.0
Compiling ignore v0.4.18
Compiling matrixmultiply v0.3.2
Compiling spin v0.9.4
Compiling thiserror-impl v1.0.37
Compiling tracing-attributes v0.1.23
Compiling flat_serialize_macro v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/flat_serialize/flat_serialize_macro)
Compiling hexf v0.2.1
Compiling nalgebra-macros v0.1.0
Compiling unic-ucd-segment v0.9.0
Compiling rand_distr v0.4.3
Compiling half v1.8.2
Compiling pest v2.3.0
Compiling funty v2.0.0
Compiling sptr v0.3.2
Compiling stable_deref_trait v1.2.0
Compiling base64 v0.13.0
Compiling tracing v0.1.37
Compiling tracing-subscriber v0.3.16
Compiling semver-parser v0.10.2
Compiling pest_meta v2.3.0
Compiling bitvec v1.0.1
Compiling semver v0.11.0
Compiling rustc_version v0.3.3
Compiling tracing-error v0.2.0
Compiling pest_generator v2.3.0
Compiling atomic-traits v0.3.0
Compiling unic-segment v0.9.0
Compiling pgx-sql-entity-graph v0.7.1
Compiling globwalk v0.8.1
Compiling uuid v1.3.0
Compiling encodings v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/encodings)
Compiling pest_derive v2.3.0
Compiling seahash v4.1.0
Compiling aggregate_builder v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/aggregate_builder)
Compiling asap v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/asap)
Compiling toml v0.5.11
Compiling ordered-float v1.1.1
Compiling num-complex v0.4.2
Compiling flat_serialize v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/flat_serialize/flat_serialize)
Compiling twofloat v0.6.0
Compiling tspoint v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/tspoint)
Compiling serde_cbor v0.11.2
Compiling ron v0.6.6
Compiling pgx-macros v0.7.1
Compiling simba v0.5.1
Compiling pgx-pg-config v0.7.1
Compiling stats_agg v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/stats-agg)
Compiling cauchy v0.4.0
Compiling spfunc v0.1.0
Compiling counter-agg v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/counter-agg)
Compiling tera v1.17.0
Compiling tdigest v0.2.2 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/t-digest)
Compiling time_weighted_average v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/time-weighted-average)
Compiling uddsketch v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/udd-sketch)
Compiling pgx-pg-sys v0.7.1
Compiling countminsketch v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/count-min-sketch)
Compiling hyperloglogplusplus v0.1.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/crates/hyperloglogplusplus)
Compiling bincode v1.3.3
Compiling nalgebra v0.27.1
Compiling statrs v0.15.0
Compiling pgx v0.7.1
Compiling timescaledb_toolkit v1.16.0 (/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/extension)
warning: variable does not need to be mutable
--> extension/src/heartbeat_agg.rs:104:17
|
104 | let mut last_interval = self.liveness.last_mut().unwrap();
| ----^^^^^^^^^^^^^
| |
| help: remove this mut
|
= note: #[warn(unused_mut)] on by default

warning: variable does not need to be mutable
--> extension/src/datum_utils.rs:156:13
|
156 | let mut info = pg_sys::palloc0(size) as pg_sys::FunctionCallInfo;
| ----^^^^
| |
| help: remove this mut

warning: variable does not need to be mutable
--> extension/src/pg_any_element.rs:51:21
|
51 | let mut info = pg_sys::palloc0(size) as pg_sys::FunctionCallInfo;
| ----^^^^
| |
| help: remove this mut

error: linking with cc failed: exit status: 1
|
= note: LC_ALL="C" PATH="/usr/local/Cellar/rust/1.71.0/lib/rustlib/x86_64-apple-darwin/bin:/usr/local/Homebrew/Library/Homebrew/shims/mac/super:/usr/local/opt/rust/bin:/usr/local/opt/rustfmt/bin:/usr/local/opt/icu4c/bin:/usr/local/opt/openssl@3/bin:/usr/local/opt/krb5/bin:/usr/local/opt/lz4/bin:/usr/local/opt/postgresql@14/bin:/usr/bin:/bin:/usr/sbin:/sbin" VSLANG="1033" ZERO_AR_DATE="1" "cc" "-Wl,-exported_symbols_list,/private/tmp/rustcsLAJNd/list" "-arch" "x86_64" "-m64" "/private/tmp/rustcsLAJNd/symbols.o" "/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/target/release/deps/timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o" "-L" "/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/target/release/deps" "-L" "/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/target/release/build/pgx-pg-sys-ccd8e037eba473a5/out/cshim" "-L" "/usr/local/Cellar/rust/1.71.0/lib/rustlib/x86_64-apple-darwin/lib" "/private/tmp/rustcsLAJNd/libpgx_pg_sys-1c9938e9cd1ac6e4.rlib" "/usr/local/Cellar/rust/1.71.0/lib/rustlib/x86_64-apple-darwin/lib/libcompiler_builtins-74493e059807d2c5.rlib" "-liconv" "-lSystem" "-lc" "-lm" "-L" "/usr/local/Cellar/rust/1.71.0/lib/rustlib/x86_64-apple-darwin/lib" "-o" "/private/tmp/timescaledb-toolkit-20230803-60201-1knadmy/timescaledb-toolkit-1.16.0/target/release/deps/libtimescaledb_toolkit.dylib" "-Wl,-dead_strip" "-dynamiclib" "-Wl,-dylib" "-nodefaultlibs"
= note: Undefined symbols for architecture x86_64:
"_AggCheckCallContext", referenced from:
pgx_pg_sys::pg14::AggCheckCallContext::h44538d9f9b67b500 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_ArrayGetNItems", referenced from:
pgx::array::RawArray::from_ptr::h26af095cc7969e55 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_BlessTupleDesc", referenced from:
pgx_pg_sys::pg14::BlessTupleDesc::h8d09e381f024ad0c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_CacheMemoryContext", referenced from:
pgx::memcxt::PgMemoryContexts::palloc::h23dd15d5c091d59c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_CopyErrorData", referenced from:
pgx_pg_sys::pg14::CopyErrorData::hefa65de32d926c99 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_CurTransactionContext", referenced from:
pgx::memcxt::PgMemoryContexts::palloc::h23dd15d5c091d59c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_CurrentMemoryContext", referenced from:
pgx_pg_sys::submodules::panic::run_guarded::h009c424252e4c35d in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h00d3de96b4251e55 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h024ba112dfbec6f3 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h02d86a3229c67274 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h040fbacab9d32a7d in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h05d1576b83246fcc in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h07860b553eabe738 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
...
"_DateStyle", referenced from:
__ts_toolkit_encode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_DateTimeParseError", referenced from:
__ts_toolkit_decode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_DecodeDateTime", referenced from:
__ts_toolkit_decode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_DirectFunctionCall1Coll", referenced from:
pgx_pg_sys::pg14::DirectFunctionCall1Coll::he32d81ae2d23e38e in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_DirectFunctionCall2Coll", referenced from:
pgx_pg_sys::pg14::DirectFunctionCall2Coll::hefa4d8b0db5d0347 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_DirectFunctionCall3Coll", referenced from:
pgx_pg_sys::pg14::DirectFunctionCall3Coll::h9716250c50f84991 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_EncodeDateTime", referenced from:
__ts_toolkit_encode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_EncodeSpecialTimestamp", referenced from:
__ts_toolkit_encode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_ErrorContext", referenced from:
_accessorapproxpercentile_in_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessorapproxpercentile_out_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessor_approx_percentile_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessorapproxpercentilerank_in_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessorapproxpercentilerank_out_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessor_approx_percentile_rank_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessornumvals_in_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
...
"_FlushErrorState", referenced from:
pgx_pg_sys::pg14::FlushErrorState::hd8361af221f5b718 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_FreeErrorData", referenced from:
pgx_pg_sys::pg14::FreeErrorData::hf10bd3a0e65d7dd3 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_FunctionCall1Coll", referenced from:
timescaledb_toolkit::time_vector::pipeline::execute_pipeline_element::h6b5f622c2e811da3 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_GetDatabaseEncoding", referenced from:
pgx_pg_sys::pg14::GetDatabaseEncoding::hed86fd05322ec93c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_GetSysCacheOid", referenced from:
pgx_pg_sys::pg14::GetSysCacheOid::h1f110d8ae2320f1c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_HeapTupleHeaderGetDatum", referenced from:
pgx_pg_sys::pg14::HeapTupleHeaderGetDatum::ha0a27e9916052e72 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_InputFunctionCall", referenced from:
timescaledb_toolkit::datum_utils::DatumFromSerializedTextReader::read_datum::h194dac3a635af872 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_LookupExplicitNamespace", referenced from:
pgx_pg_sys::pg14::LookupExplicitNamespace::hb89332b841d8e972 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_MemoryContextAlloc", referenced from:
pgx::memcxt::PgMemoryContexts::palloc::h23dd15d5c091d59c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_MemoryContextDelete", referenced from:
_$LT$pgx..memcxt..OwnedMemoryContext$u20$as$u20$core..ops..drop..Drop$GT$::drop::h2123bb5171eb45ea in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_MemoryContextRegisterResetCallback", referenced from:
pgx_pg_sys::pg14::MemoryContextRegisterResetCallback::h570203ab36be2c41 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_MessageContext", referenced from:
pgx::memcxt::PgMemoryContexts::palloc::h23dd15d5c091d59c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_MyDatabaseId", referenced from:
core::ops::function::FnOnce::call_once::h6490db15dacbfb38 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_OutputFunctionCall", referenced from:
pgx_pg_sys::pg14::OutputFunctionCall::hb78aaed150a7c2a5 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_PG_exception_stack", referenced from:
pgx::fcinfo::pg_12_13_14_15::pg_getarg::ha57d59c4cb3f479e in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
core::ptr::drop_in_place$LT$pgx..list..PgList$LT$pgx_pg_sys..pg14..Node$GT$$GT$::h7102a7af376e694a in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
__ts_toolkit_encode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
__ts_toolkit_decode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
timescaledb_toolkit::time_vector::pipeline::execute_pipeline_element::h6b5f622c2e811da3 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
timescaledb_toolkit::time_vector::timestamptz_to_string::h0ce6ed1969c47f49 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
timescaledb_toolkit::datum_utils::DatumFromSerializedTextReader::read_datum::h194dac3a635af872 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
...
"_ParseDateTime", referenced from:
__ts_toolkit_decode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_PortalContext", referenced from:
pgx::memcxt::PgMemoryContexts::palloc::h23dd15d5c091d59c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_PostmasterContext", referenced from:
pgx::memcxt::PgMemoryContexts::palloc::h23dd15d5c091d59c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_ReleaseSysCache", referenced from:
pgx_pg_sys::pg14::ReleaseSysCache::h6506839ffb9ad064 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_SearchSysCache1", referenced from:
pgx_pg_sys::pg14::SearchSysCache1::hfd6d3be7c5746347 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_SetEpochTimestamp", referenced from:
__ts_toolkit_decode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_TopMemoryContext", referenced from:
pgx::memcxt::PgMemoryContexts::palloc::h23dd15d5c091d59c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_TopTransactionContext", referenced from:
pgx::memcxt::PgMemoryContexts::palloc::h23dd15d5c091d59c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_accumArrayResult", referenced from:
pgx_pg_sys::pg14::accumArrayResult::hbcefcc0c4a292f6a in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_appendBinaryStringInfo", referenced from:
pgx_pg_sys::pg14::appendBinaryStringInfo::h013a7439156b82d0 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_deconstruct_array", referenced from:
pgx::fcinfo::pg_12_13_14_15::pg_getarg::ha57d59c4cb3f479e in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_end_MultiFuncCall", referenced from:
pgx_pg_sys::pg14::end_MultiFuncCall::h148b60f2d952f101 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_errcode", referenced from:
pgx_pg_sys::submodules::panic::do_ereport::h613d31c94bae566c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_errdetail", referenced from:
pgx_pg_sys::submodules::panic::do_ereport::h613d31c94bae566c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_errfinish", referenced from:
pgx_pg_sys::submodules::panic::do_ereport::h613d31c94bae566c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_errhint", referenced from:
pgx_pg_sys::submodules::panic::do_ereport::h613d31c94bae566c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_errmsg", referenced from:
pgx_pg_sys::submodules::panic::do_ereport::h613d31c94bae566c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_error_context_stack", referenced from:
pgx::fcinfo::pg_12_13_14_15::pg_getarg::ha57d59c4cb3f479e in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
core::ptr::drop_in_place$LT$pgx..list..PgList$LT$pgx_pg_sys..pg14..Node$GT$$GT$::h7102a7af376e694a in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
__ts_toolkit_encode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
__ts_toolkit_decode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
timescaledb_toolkit::time_vector::pipeline::execute_pipeline_element::h6b5f622c2e811da3 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
timescaledb_toolkit::time_vector::timestamptz_to_string::h0ce6ed1969c47f49 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
timescaledb_toolkit::datum_utils::DatumFromSerializedTextReader::read_datum::h194dac3a635af872 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
...
"_errstart", referenced from:
pgx_pg_sys::submodules::panic::do_ereport::h613d31c94bae566c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_fmgr_info", referenced from:
pgx_pg_sys::pg14::fmgr_info::h55310b8ce6879538 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_format_procedure_qualified", referenced from:
_$LT$ron..ser..Compound$LT$W$GT$$u20$as$u20$serde..ser..SerializeStructVariant$GT$::serialize_field::h58b9176471689678 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_getTypeInputInfo", referenced from:
pgx_pg_sys::pg14::getTypeInputInfo::hc441c76343440601 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_getTypeOutputInfo", referenced from:
pgx_pg_sys::pg14::getTypeOutputInfo::h46a08544de62f90f in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_get_call_result_type", referenced from:
pgx_pg_sys::pg14::get_call_result_type::h8b07d3ad0902f3f2 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_get_fn_expr_argtype", referenced from:
pgx_pg_sys::pg14::get_fn_expr_argtype::h9250ff1c0ec451b5 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_get_func_signature", referenced from:
pgx_pg_sys::pg14::get_func_signature::h620ccf75f3a2ed20 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_get_namespace_name", referenced from:
pgx_pg_sys::pg14::get_namespace_name::h559e751a78e891ba in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_get_typlenbyvalalign", referenced from:
pgx::fcinfo::pg_12_13_14_15::pg_getarg::ha57d59c4cb3f479e in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_heap_form_tuple", referenced from:
pgx_pg_sys::pg14::heap_form_tuple::h2b5b619c766f4a4c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_initArrayResult", referenced from:
pgx_pg_sys::pg14::initArrayResult::hfdd67e96edbff459 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_init_MultiFuncCall", referenced from:
pgx_pg_sys::pg14::init_MultiFuncCall::he14ea3101e3f419e in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_interval_cmp", referenced from:
_$LT$timescaledb_toolkit..time_vector..pipeline..lambda..Value$u20$as$u20$core..cmp..PartialOrd$GT$::partial_cmp::h2d835891e76d9612 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_interval_div", referenced from:
timescaledb_toolkit::time_vector::pipeline::lambda::executor::ExpressionExecutor$LT$T$GT$::exec_binary_op::h4a9665c3d7b5cb31 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
timescaledb_toolkit::time_vector::pipeline::lambda::executor::ExpressionExecutor$LT$T$GT$::exec_binary_op::h82138eea213d5d2d in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_interval_eq", referenced from:
_$LT$timescaledb_toolkit..time_vector..pipeline..lambda..Value$u20$as$u20$core..cmp..PartialEq$GT$::eq::h9a0b900e81537543 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_interval_in", referenced from:
timescaledb_toolkit::time_vector::pipeline::lambda::parser::parse_primary::h29ddf5d9b587300c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_interval_justify_hours", referenced from:
_$LT$timescaledb_toolkit..raw..Interval$u20$as$u20$core..convert..From$LT$i64$GT$$GT$::from::h6ae385ae3b62d413 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_interval_mi", referenced from:
timescaledb_toolkit::time_vector::pipeline::lambda::executor::ExpressionExecutor$LT$T$GT$::exec_binary_op::h4a9665c3d7b5cb31 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
timescaledb_toolkit::time_vector::pipeline::lambda::executor::ExpressionExecutor$LT$T$GT$::exec_binary_op::h82138eea213d5d2d in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_interval_mul", referenced from:
timescaledb_toolkit::time_vector::pipeline::lambda::executor::ExpressionExecutor$LT$T$GT$::exec_binary_op::h4a9665c3d7b5cb31 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
timescaledb_toolkit::time_vector::pipeline::lambda::executor::ExpressionExecutor$LT$T$GT$::exec_binary_op::h82138eea213d5d2d in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_interval_pl", referenced from:
timescaledb_toolkit::time_vector::pipeline::lambda::executor::ExpressionExecutor$LT$T$GT$::exec_binary_op::h4a9665c3d7b5cb31 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
timescaledb_toolkit::time_vector::pipeline::lambda::executor::ExpressionExecutor$LT$T$GT$::exec_binary_op::h82138eea213d5d2d in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_lappend", referenced from:
pgx_pg_sys::pg14::lappend::h76881950a93858ae in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_list_free", referenced from:
core::ptr::drop_in_place$LT$pgx..list..PgList$LT$pgx_pg_sys..pg14..Node$GT$$GT$::h7102a7af376e694a in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_lookup_type_cache", referenced from:
pgx_pg_sys::pg14::lookup_type_cache::h6cec0dd570885017 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_makeArrayResult", referenced from:
pgx_pg_sys::pg14::makeArrayResult::h9b8f838178d62ca3 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_makeStringInfo", referenced from:
pgx::stringinfo::StringInfo::new::hdb1d2038152a46c5 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_palloc", referenced from:
pgx_pg_sys::pg14::palloc::h0a4de8bd257f3741 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_palloc0", referenced from:
pgx_pg_sys::pg14::palloc0::hc132a818810236c8 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_per_MultiFuncCall", referenced from:
pgx_pg_sys::pg14::per_MultiFuncCall::hdf476357eafcb402 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_pfree", referenced from:
pgx_pg_sys::pg14::pfree::h60129c0440e2bc8d in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_pg_any_to_server", referenced from:
pgx_pg_sys::pg14::pg_any_to_server::h5580e4091b5d3e64 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_pg_detoast_datum", referenced from:
pgx::fcinfo::pg_12_13_14_15::pg_getarg::ha57d59c4cb3f479e in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_pg_detoast_datum_copy", referenced from:
pgx_pg_sys::pg14::pg_detoast_datum_copy::hcbea18dcd34dbbff in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_pg_detoast_datum_packed", referenced from:
pgx_pg_sys::pg14::pg_detoast_datum_packed::hbc009ada5e046bf5 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_pg_re_throw", referenced from:
_accessorapproxpercentile_in_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessorapproxpercentile_out_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessor_approx_percentile_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessorapproxpercentilerank_in_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessorapproxpercentilerank_out_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessor_approx_percentile_rank_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
_accessornumvals_in_wrapper in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
...
"_pg_server_to_any", referenced from:
pgx_pg_sys::pg14::pg_server_to_any::h8b0161d203b53e8b in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_regprocedurein", referenced from:
pgx_pg_sys::pg14::DirectFunctionCall1Coll::he32d81ae2d23e38e in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_regtypein", referenced from:
_$LT$timescaledb_toolkit..time_vector..Timevector_TSTZ_F64$u20$as$u20$pgx..datum..into..IntoDatum$GT$::type_oid::ha8d1c936c48e6a01 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_timestamp2tm", referenced from:
__ts_toolkit_encode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_timestamptz_in", referenced from:
timescaledb_toolkit::time_vector::pipeline::lambda::parser::parse_primary::h29ddf5d9b587300c in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_timestamptz_mi_interval", referenced from:
timescaledb_toolkit::time_vector::pipeline::lambda::executor::ExpressionExecutor$LT$T$GT$::exec_binary_op::h4a9665c3d7b5cb31 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
timescaledb_toolkit::time_vector::pipeline::lambda::executor::ExpressionExecutor$LT$T$GT$::exec_binary_op::h82138eea213d5d2d in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_timestamptz_pl_interval", referenced from:
pgx_pg_sys::submodules::panic::run_guarded::h022160768cd903e6 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h151430dd0c786931 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h1b8737a89e457c99 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h27d3b3197c2c4849 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h285724854126fc79 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h286573570c4aa28e in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
pgx_pg_sys::submodules::panic::run_guarded::h3364ebdb2f41bb0d in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
...
"_timestamptz_to_str", referenced from:
timescaledb_toolkit::time_vector::timestamptz_to_string::h0ce6ed1969c47f49 in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
"_tm2timestamp", referenced from:
__ts_toolkit_decode_timestamptz in timescaledb_toolkit.timescaledb_toolkit.d3bacd6dbab10fa0-cgu.0.rcgu.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

warning: timescaledb_toolkit (lib) generated 3 warnings
error: could not compile timescaledb_toolkit (lib) due to previous error; 3 warnings emitted

==> Formula
Tap: timescale/tap
Path: /usr/local/Homebrew/Library/Taps/timescale/homebrew-tap/timescaledb-toolkit.rb
==> Configuration
HOMEBREW_VERSION: 4.1.3
ORIGIN: https://github.com/Homebrew/brew
HEAD: 128df14e0afd0525564051a7665708c2973a3cab
Last commit: 3 days ago
Core tap JSON: 03 Aug 19:05 UTC
HOMEBREW_PREFIX: /usr/local
HOMEBREW_CASK_OPTS: []
HOMEBREW_EDITOR: /Applications/TextEdit.app/Contents/MacOS/TextEdit
HOMEBREW_MAKE_JOBS: 12
Homebrew Ruby: 2.6.10 => /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/bin/ruby
CPU: dodeca-core 64-bit kabylake
Clang: 14.0.3 build 1403
Git: 2.41.0 => /usr/local/bin/git
Curl: 8.1.2 => /usr/bin/curl
macOS: 13.5-x86_64
CLT: 14.3.1.0.1.1683849156
Xcode: 14.3.1
==> ENV
HOMEBREW_CC: clang
HOMEBREW_CXX: clang++
MAKEFLAGS: -j12
CMAKE_PREFIX_PATH: /usr/local/opt/icu4c:/usr/local/opt/krb5:/usr/local/opt/readline:/usr/local
CMAKE_INCLUDE_PATH: /Library/Developer/CommandLineTools/SDKs/MacOSX13.sdk/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers
CMAKE_LIBRARY_PATH: /Library/Developer/CommandLineTools/SDKs/MacOSX13.sdk/System/Library/Frameworks/OpenGL.framework/Versions/Current/Libraries
PKG_CONFIG_PATH: /usr/local/opt/icu4c/lib/pkgconfig:/usr/local/opt/openssl@3/lib/pkgconfig:/usr/local/opt/krb5/lib/pkgconfig:/usr/local/opt/lz4/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig
PKG_CONFIG_LIBDIR: /usr/lib/pkgconfig:/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/13
HOMEBREW_GIT: git
HOMEBREW_SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX13.sdk
ACLOCAL_PATH: /usr/local/share/aclocal
PATH: /usr/local/Homebrew/Library/Homebrew/shims/mac/super:/usr/local/opt/rust/bin:/usr/local/opt/rustfmt/bin:/usr/local/opt/icu4c/bin:/usr/local/opt/openssl@3/bin:/usr/local/opt/krb5/bin:/usr/local/opt/lz4/bin:/usr/local/opt/postgresql@14/bin:/usr/bin:/bin:/usr/sbin:/sbin

Error: timescale/tap/timescaledb-toolkit 1.16.0 did not build
Logs:
/Users/mmarvin/Library/Logs/Homebrew/timescaledb-toolkit/03.cargo.cc
/Users/mmarvin/Library/Logs/Homebrew/timescaledb-toolkit/00.options.out
/Users/mmarvin/Library/Logs/Homebrew/timescaledb-toolkit/01.cargo.cc
/Users/mmarvin/Library/Logs/Homebrew/timescaledb-toolkit/02.cargo
/Users/mmarvin/Library/Logs/Homebrew/timescaledb-toolkit/03.cargo
/Users/mmarvin/Library/Logs/Homebrew/timescaledb-toolkit/01.cargo
If reporting this issue please do so at (not Homebrew/brew or Homebrew/homebrew-core):
https://github.com/timescale/homebrew-tap/issues

No such file or directory pgsx.mk

Getting the following error when trying to install with homebrew:

Makefile:67: /usr/local/lib/postgresql/pgxs/src/makefiles/pgxs.mk: No such file or directory
make: *** No rule to make target `/usr/local/lib/postgresql/pgxs/src/makefiles/pgxs.mk'. Stop.

I had a previous installation of postgres that I deleted before running this ('which postgresql' is coming back clean in the command line, although psql is still in my path)

Any advice would be greatly appreciated!

error: "postgres.h not found"

brew install timescaledb
==> Installing timescaledb from timescale/tap
==> Downloading https://timescalereleases.blob.core.windows.net/homebrew/timescaledb-2.0.1.tar.lzma
Already downloaded: /Users/michael/Library/Caches/Homebrew/downloads/86a311958704c9e6161d1c81bf3816fde00fbd697c961ca015d0ad2283788a8a--timescaledb-2.0.1.tar.lzma
==> ./bootstrap -DREGRESS_CHECKS=OFF -DPROJECT_INSTALL_METHOD="brew"
==> cd ./build && make
Last 15 lines from /Users/michael/Library/Logs/Homebrew/timescaledb/02.build:
/tmp/timescaledb-20210216-34647-w9na0y/timescaledb/tsl/src/process_utility.c:6:10: error: 'postgres.h' file not found [clang-diagnostic-error]
#include <postgres.h>
^
2 errors generated.
Error while processing /tmp/timescaledb-20210216-34647-w9na0y/timescaledb/tsl/src/process_utility.c.
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/process_utility.c.o] Error 1
error: unknown warning option '-Wno-format-truncation' [clang-diagnostic-unknown-warning-option]
/tmp/timescaledb-20210216-34647-w9na0y/timescaledb/tsl/src/planner.c:6:10: error: 'postgres.h' file not found [clang-diagnostic-error]
#include <postgres.h>
^
2 errors generated.
Error while processing /tmp/timescaledb-20210216-34647-w9na0y/timescaledb/tsl/src/planner.c.
make[2]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/planner.c.o] Error 1
make[1]: *** [tsl/src/CMakeFiles/timescaledb-tsl.dir/all] Error 2
make: *** [all] Error 2

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
https://github.com/timescale/homebrew-tap/issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.