Jason Petersen
498eead3f7
Lock tools version
2016-08-02 21:27:10 -07:00
Jason Petersen
342c69d034
Add CHANGELOG entry for 5.0.1
2016-04-15 12:54:00 -06:00
Jason Petersen
f2742ce39b
Fix use of INT64CONST macro
...
This macro is intended to receive a bare integer literal (no suffix).
It adds a suffix as necessary, depending upon available features. On
e.g. 32-bit platforms, the existing code failed to compile because a
suffix was added to the existing suffix. This fixes that problem.
2016-04-15 12:44:12 -06:00
Brian Cloutier
c3ed6ba62b
Treat nodePort as the 64bit integer it is
2016-04-15 12:44:11 -06:00
Metin Döşlü
c6e7b044ee
Merge pull request #406 from citusdata/update_travis_build_links
...
Update Travis build links
2016-03-25 12:18:46 -07:00
Metin Döşlü
7d71878258
Update Travis build links
2016-03-25 12:12:20 -07:00
Joe Nelson
11a5aef001
Merge pull request #400 from citusdata/contributing-cla
...
Add CLA link to contributing.md
2016-03-23 16:36:42 -07:00
Jason Petersen
1eebb9a6c3
Fix strlcpy off-by-one error
...
WORKER_LENGTH + 1 is too large. Fixing this has no impact on the string
that is ultimately copied, as it's impossible for the source string to
be any larger to begin with.
2016-03-23 17:34:34 -06:00
Joe Nelson
956395b3a9
Add CLA link to contributing.md
2016-03-23 16:29:33 -07:00
Jason Petersen
f9e2e50e4f
Add CHANGELOG
2016-03-23 17:28:16 -06:00
Jason Petersen
374d3237c2
Merge pull request #386 from citusdata/add_license
...
Add or update license/copyright information
cr: @sumedhpathak @begriffs
2016-03-23 17:23:04 -06:00
Jason Petersen
f87df6ccf8
Remove libpng caveat
...
I'm not sure this description was 100% accurate; users can open issues
if they continue to have linkage problems.
2016-03-23 17:20:35 -06:00
Jason Petersen
59a28e24c9
Add LICENSE information to README
...
Integrating this into the new file.
2016-03-23 17:17:43 -06:00
Jason Petersen
423e6c8ea0
Update copyright dates
...
Fixed configure variable and updated all end dates to 2016.
2016-03-23 17:14:37 -06:00
Jason Petersen
9521fcfb22
Add AGPL-3.0 in LICENSE file
...
Adding our license.
2016-03-23 17:04:58 -06:00
Joe Nelson
a7d3b79a50
Merge pull request #398 from citusdata/readme-polish
...
Improve readme
2016-03-23 15:59:54 -07:00
Joe Nelson
c3ef3908ec
Note libpng brew mac problem
2016-03-23 15:57:02 -07:00
Joe Nelson
63668d8185
Use newest postgresql formula on homebrew
2016-03-23 15:26:25 -07:00
Joe Nelson
c9e9ec7520
Use named links in readme
2016-03-23 15:22:58 -07:00
Joe Nelson
74d38eb1cc
Updated install instructions for linux and mac
2016-03-23 15:12:11 -07:00
Joe Nelson
df7b1f411a
Specific build instructions for mac vs linux
2016-03-23 14:08:26 -07:00
Joe Nelson
6bf4f61a88
Link explicitly to 5.0 docs rather than current/
2016-03-23 13:22:00 -07:00
Joe Nelson
dbf825f5f3
Make list of users more compact
2016-03-23 13:19:01 -07:00
Joe Nelson
7b46e50088
Add who's using section
2016-03-22 14:06:39 -07:00
Joe Nelson
f5a1156943
Copyright footer
2016-03-22 14:06:38 -07:00
Joe Nelson
d1cc61087d
Docs in /docs/citus/current
2016-03-22 14:06:38 -07:00
Joe Nelson
da6e6608f6
Add basic CONTRIBUTING.md
2016-03-22 14:06:31 -07:00
Joe Nelson
d609325a44
Add note about missing sql commands
...
Help avoid a frustrating surprise
2016-03-22 11:20:04 -07:00
Joe Nelson
233160f5bd
Link to freenode web client rather than irc:// protocol
...
Chrome was not understanding the direct link (did not spawn my irc client)
2016-03-22 11:11:56 -07:00
Joe Nelson
e079f2d470
Change docs url to what it will be when 5.0 is live
2016-03-22 10:58:35 -07:00
Samay Sharma
664f1d077e
Merge pull request #397 from citusdata/ozgune-patch-1
...
Fix broken links in README.
2016-03-21 11:46:48 -07:00
Ozgun Erdogan
e4074f690d
Update README.md
...
Fix line breaks that caused broken URLs.
2016-03-21 11:30:13 -07:00
Samay Sharma
b167877cf6
Merge pull request #396 from citusdata/ozgune-patch-1
...
Update README.md
2016-03-21 10:59:40 -07:00
Ozgun Erdogan
3ae86ca3bd
Update README.md
...
Minor fix to markdown for hyperlink to citusdata.com
2016-03-21 09:39:29 -07:00
Ozgun Erdogan
c1390acb4c
Merge pull request #393 from citusdata/readme-5.0
...
Readme for 5.0
2016-03-21 09:34:26 -07:00
Joe Nelson
3a844ef673
Fully qualify citus url
2016-03-18 14:35:23 -07:00
Joe Nelson
459fa497a3
Use real Travis badge
2016-03-18 13:55:21 -07:00
Joe Nelson
bc48785b23
Readme for 5.0
2016-03-18 13:32:13 -07:00
Jason Petersen
d9a1eaeb92
Merge pull request #378 from citusdata/build_fixes
...
Fix various build issues
cr: @anarazel
2016-03-11 14:28:54 -07:00
Jason Petersen
a53fb90ef9
Fix various build issues
...
I came across several places we weren't as flexible or resilient as we
should have been in our build logic. They include:
* Not using `DESTDIR` in the install-header destination
* Allowing callers to specify `VPATH` or `srcdir` (which breaks)
* Using absolute path for SCRIPTS (9.5 prepends srcdir)
* Including libpq-int in a confusing way (extracted this function)
* Having server includes come first during csql build (client must)
In particular, I hit all of these attempting to build with pg_buildext
in Debian. It passes in an explicit VPATH, as well as srcdir (breaking
all recursive make invocations), and also uses DESTDIR during install.
In addition, a PGDG-enabled Debian box will have the latest libpq-dev
headers (e.g. 9.5) even when building against an older server version
(e.g. 9.4). This leads to problems when including e.g. `c.h`, which
is ambiguous. While compiling more client-side code (csql), we need to
ensure the newer libpq headers are included _first_, so I fixed that.
2016-03-11 13:38:47 -07:00
Jason Petersen
297bd5768d
Final formatting fixes
2016-02-17 17:20:14 -07:00
Jason Petersen
bdf3cdd228
Merge pull request #340 from citusdata/bugfix/buildsystem
...
Small buildsystem fixes
cr: @jasonmp85
2016-02-17 17:14:46 -07:00
Andres Freund
6bd1ec3ce9
Fix Makefile.global/configure regeneration
...
These dependencies previously didn't result in regeneration when using
a source directory build.
2016-02-17 16:54:39 -07:00
Andres Freund
974a121d50
Make 'all' default src/backend/distributed target
...
Otherwise typing 'make' will just build citusdb--5.0.sql, not
particularly helpful.
2016-02-17 16:51:55 -07:00
Andres Freund
93caee2929
Add deps from toplevel install to build targets
...
Otherwise a parallel 'make install' can end up trying to build the same
targets twice, once via the normal build rules ('all') and once via
install.
2016-02-17 16:51:01 -07:00
Andres Freund
7efbb5b472
Don't use autoconf's default CFLAGS.
...
We just want PosgreSQL's defaults, not autoconf's (-g -O2). Currently,
these are wrong when PostgreSQL has been compiled with e.g. -O0.
2016-02-17 16:50:14 -07:00
Andres Freund
0a1c8723c4
Fix make install for VPATH builds.
...
copy_to_distributed_table is in the source, not the build directory. As
there might be scripts in either at some point, install scripts from
both.
2016-02-17 16:48:06 -07:00
Marco Slot
9e944fbcfc
Merge pull request #326 from citusdata/feature/drop_shards_on_drop_table
...
Drop shards when a distributed table is dropped
2016-02-17 23:47:49 +01:00
Marco Slot
71af0e496e
Rename citusdb to citus in regression test output
2016-02-17 23:33:30 +01:00
Marco Slot
75a141a7c6
Merge remote-tracking branch 'origin/master' into feature/drop_shards_on_drop_table
2016-02-17 22:52:58 +01:00