Valentin Churavy

Results 435 issues of Valentin Churavy

It would be nice to mark a column as unique. Related to that it would be nice to add arbitrary constraint and maybe have some helper function for stuff like...

enhancement

Running the following Slick query: ``` scala SlickQuery[Post].filter(_.category.col == Category.Debate).filter(_.publishDate.col

enhancement

Postgres supports Table Inheritance since 8.4 http://www.postgresql.org/docs/9.3/static/ddl-inherit.html It allows for easy table partition and would be nice match to the oo-side of scala. Table Post (...) Table Question inherits Post...

enhancement

Since postgres 8.4 it support custom types for columns. http://www.postgresql.org/docs/9.3/static/xtypes.html It would be nice if activate would support custom types and we could extend type-safety into the db :)

enhancement

@aviatesk and I looked at executing the result of a custom AbstractInterpreter by stashing the output of the top-level inferred code into an OpaqueClosure. While this worked as a first...

design
compiler plugins

``` ERROR: IOError: open("/home/vchuravy/builds/julia-dbg/usr/bin/julia", 0, 0): no such file or directory (ENOENT) Stacktrace: [1] uv_error @ ./libuv.jl:97 [inlined] [2] open(path::String, flags::UInt8, mode::Int64) @ Base.Filesystem ./filesystem.jl:101 [3] open @ ./filesystem.jl:93 [inlined]...

I find myself writing: ``` function experiment(ArrayT, N, M) if ArrayT

``` Updating `~/.julia/environments/v1.2/Project.toml` [a0b5b9ef] + Cxx v0.2.0+ #master (https://github.com/Keno/Cxx.jl.git) Updating `~/.julia/environments/v1.2/Manifest.toml` [a0b5b9ef] + Cxx v0.2.0+ #master (https://github.com/Keno/Cxx.jl.git) Building Cxx → `~/.julia/packages/Cxx/81BGP/deps/build.log` ┌ Error: Error building `Cxx`: │ BuildBootstrap.Makefile:6: /home/vchuravy/builds/julia/usr/bin/../../deps/Versions.make: No...

build

It would be create if this would work. ``` using Cxx cxx""" #include """ function f(i, j) icxx""" return std::make_tuple($i, $j); """ end ``` Right now it fails with: ```...

I am using Cxx.jl for compiling CUDA and I can't include "boot.h". Compiling/Linking fails with an undefined reference to `__cxxjl_personality_v0`. I can work around it, but I was wondering if...